diff options
Diffstat (limited to 'shared/models/videos/video-channel.model.ts')
-rw-r--r-- | shared/models/videos/video-channel.model.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts new file mode 100644 index 000000000..ee56c54b6 --- /dev/null +++ b/shared/models/videos/video-channel.model.ts | |||
@@ -0,0 +1,15 @@ | |||
1 | import { Video } from './video.model' | ||
2 | |||
3 | export interface VideoChannel { | ||
4 | id: number | ||
5 | name: string | ||
6 | description: string | ||
7 | isLocal: boolean | ||
8 | createdAt: Date | string | ||
9 | updatedAt: Date | string | ||
10 | owner?: { | ||
11 | name: string | ||
12 | uuid: string | ||
13 | } | ||
14 | videos?: Video[] | ||
15 | } | ||