]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-update.model.ts
Add video comment components
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-update.model.ts
CommitLineData
fd45e8f4
C
1import { VideoPrivacy } from './video-privacy.enum'
2
4771e000
C
3export interface VideoUpdate {
4 name?: string
5 category?: number
6 licence?: number
7 language?: number
8 description?: string
fd45e8f4 9 privacy?: VideoPrivacy
4771e000
C
10 tags?: string[]
11 nsfw?: boolean
12}