aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/channel-sync/video-channel-sync.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/channel-sync/video-channel-sync.model.ts')
-rw-r--r--shared/models/videos/channel-sync/video-channel-sync.model.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/shared/models/videos/channel-sync/video-channel-sync.model.ts b/shared/models/videos/channel-sync/video-channel-sync.model.ts
deleted file mode 100644
index 73ac0615b..000000000
--- a/shared/models/videos/channel-sync/video-channel-sync.model.ts
+++ /dev/null
@@ -1,14 +0,0 @@
1import { VideoChannelSummary } from '../channel/video-channel.model'
2import { VideoConstant } from '../video-constant.model'
3import { VideoChannelSyncState } from './video-channel-sync-state.enum'
4
5export interface VideoChannelSync {
6 id: number
7
8 externalChannelUrl: string
9
10 createdAt: string
11 channel: VideoChannelSummary
12 state: VideoConstant<VideoChannelSyncState>
13 lastSyncAt: string
14}