1
0
Fork 0
peertube/shared/models/videos/playlist/video-playlist-create.model.ts

12 lines
239 B
TypeScript
Raw Normal View History

2019-02-26 09:55:40 +00:00
import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'
export interface VideoPlaylistCreate {
displayName: string
privacy: VideoPlaylistPrivacy
2019-02-28 10:14:26 +00:00
description?: string
2019-02-26 09:55:40 +00:00
videoChannelId?: number
2019-02-28 10:14:26 +00:00
thumbnailfile?: any
2019-02-26 09:55:40 +00:00
}