a0fa66e8f5
Co-authored-by: Walid <87608619+WalidKorchi@users.noreply.github.com>
16 lines
253 B
TypeScript
16 lines
253 B
TypeScript
export interface ChannelType {
|
|
id: number
|
|
name: string
|
|
description: string
|
|
createdAt: string
|
|
updatedAt: string
|
|
}
|
|
|
|
export const channelExample: ChannelType = {
|
|
id: 4,
|
|
name: 'Channel 4',
|
|
description: '',
|
|
createdAt: '',
|
|
updatedAt: ''
|
|
}
|