mirror of https://github.com/Chocobozzz/PeerTube
24 lines
527 B
TypeScript
24 lines
527 B
TypeScript
|
import { AccountSummary } from '../../actors/index'
|
||
|
import { VideoChannelSummary, VideoConstant } from '..'
|
||
|
import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'
|
||
|
|
||
|
export interface VideoPlaylist {
|
||
|
id: number
|
||
|
uuid: string
|
||
|
isLocal: boolean
|
||
|
|
||
|
displayName: string
|
||
|
description: string
|
||
|
privacy: VideoConstant<VideoPlaylistPrivacy>
|
||
|
|
||
|
thumbnailPath: string
|
||
|
|
||
|
videosLength: number
|
||
|
|
||
|
createdAt: Date | string
|
||
|
updatedAt: Date | string
|
||
|
|
||
|
ownerAccount?: AccountSummary
|
||
|
videoChannel?: VideoChannelSummary
|
||
|
}
|