2017-10-31 06:52:52 -04:00
|
|
|
import { VideoPrivacy } from './video-privacy.enum'
|
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
export interface VideoUpdate {
|
|
|
|
name?: string
|
|
|
|
category?: number
|
|
|
|
licence?: number
|
|
|
|
language?: number
|
|
|
|
description?: string
|
2017-10-31 06:52:52 -04:00
|
|
|
privacy?: VideoPrivacy
|
2017-07-10 13:43:21 -04:00
|
|
|
tags?: string[]
|
|
|
|
nsfw?: boolean
|
|
|
|
}
|