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.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts
deleted file mode 100644
index 6e61183a7..000000000
--- a/shared/models/videos/video-channel.model.ts
+++ /dev/null
@@ -1,11 +0,0 @@
1import { Actor } from '../actors/actor.model'
2import { Video } from './video.model'
3import { Account } from '../actors'
4
5export interface VideoChannel extends Actor {
6 displayName: string
7 description: string
8 support: string
9 isLocal: boolean
10 ownerAccount?: Account
11}