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

export interface VideoPlaylistUpdate {
  displayName?: string
  privacy?: VideoPlaylistPrivacy

  description?: string
  videoChannelId?: number
  thumbnailfile?: any
}