aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/playlist/video-playlist-create.model.ts
blob: 386acbb960e9e47c5deaff2f84c3c6cfcc37365b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'

export interface VideoPlaylistCreate {
  displayName: string
  description: string
  privacy: VideoPlaylistPrivacy

  videoChannelId?: number

  thumbnailfile?: Blob
}