blob: 0b26484d7aa8da870f77a703a3d2ab8ac6923bc5 (
plain) (
tree)
|
|
import { VideoPrivacy } from './video-privacy.enum'
export interface VideoUpdate {
name?: string
category?: number
licence?: number
language?: number
description?: string
support?: string
privacy?: VideoPrivacy
tags?: string[]
commentsEnabled?: boolean
nsfw?: boolean
}
|