blob: 38ac99668f2d27cbf29c33f180b488529ba72229 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { VideoChannelSummary } from '../channel/video-channel.model.js'
import { VideoConstant } from '../video-constant.model.js'
import { VideoChannelSyncStateType } from './video-channel-sync-state.enum.js'
export interface VideoChannelSync {
id: number
externalChannelUrl: string
createdAt: string
channel: VideoChannelSummary
state: VideoConstant<VideoChannelSyncStateType>
lastSyncAt: string
}
|