aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/channel-sync/video-channel-sync.model.ts
blob: 73ac0615bcd9cde04a9df2506705cdfa2f4c71e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { VideoChannelSummary } from '../channel/video-channel.model'
import { VideoConstant } from '../video-constant.model'
import { VideoChannelSyncState } from './video-channel-sync-state.enum'

export interface VideoChannelSync {
  id: number

  externalChannelUrl: string

  createdAt: string
  channel: VideoChannelSummary
  state: VideoConstant<VideoChannelSyncState>
  lastSyncAt: string
}