]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-update.model.ts
29a82621ba0e3ef0f981a92301ba9b9c180b093b
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
1 export interface VideoUpdate {
2 name?: string
3 category?: number
4 licence?: number
5 language?: number
6 description?: string
7 tags?: string[]
8 nsfw?: boolean
9 }