]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-create.model.ts
5c0b498ce685fdf7605d1b7f3d79fca3c7d6ca74
[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 nsfw: boolean
7 name: string
8 tags: string[]
9 }