]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-create.model.ts
567a4c79a0d86591aa57c62f3bb7003f3561262c
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
1 import { VideoPrivacy } from './video-privacy.enum'
2
3 export interface VideoCreate {
4 category?: number
5 licence?: number
6 language?: number
7 description?: string
8 support?: string
9 channelId: number
10 nsfw: boolean
11 name: string
12 tags?: string[]
13 commentsEnabled?: boolean
14 privacy: VideoPrivacy
15 }