]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/channel-sync/video-channel-sync.model.ts
Channel sync (#5135)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / channel-sync / video-channel-sync.model.ts
1 import { VideoChannelSummary } from '../channel/video-channel.model'
2 import { VideoConstant } from '../video-constant.model'
3 import { VideoChannelSyncState } from './video-channel-sync-state.enum'
4
5 export interface VideoChannelSync {
6 id: number
7
8 externalChannelUrl: string
9
10 createdAt: string
11 channel: VideoChannelSummary
12 state: VideoConstant<VideoChannelSyncState>
13 lastSyncAt: string
14 }