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