blob: 73ac0615bcd9cde04a9df2506705cdfa2f4c71e5 (
plain) (
tree)
|
|
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
}
|