aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-channel.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/video-channel.model.ts')
-rw-r--r--shared/models/videos/video-channel.model.ts15
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 @@
1import { Video } from './video.model'
2
3export 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}