]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/playlist/video-playlist-update.model.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-playlist-update.model.ts
CommitLineData
418d092a
C
1import { VideoPlaylistPrivacy } from './video-playlist-privacy.model'
2
3export interface VideoPlaylistUpdate {
1b319b7a
C
4 displayName?: string
5 privacy?: VideoPlaylistPrivacy
418d092a 6
07b1a18a 7 description?: string
418d092a 8 videoChannelId?: number
07b1a18a 9 thumbnailfile?: any
418d092a 10}