1
0
Fork 0
peertube/shared/models/videos/video-create.model.ts

16 lines
308 B
TypeScript
Raw Normal View History

2017-10-31 10:52:52 +00:00
import { VideoPrivacy } from './video-privacy.enum'
export interface VideoCreate {
2017-12-07 16:22:44 +00:00
category?: number
licence?: number
language?: number
description?: string
support?: string
2017-10-24 17:41:09 +00:00
channelId: number
nsfw: boolean
name: string
2017-12-07 16:22:44 +00:00
tags?: string[]
2018-01-03 09:12:36 +00:00
commentsEnabled?: boolean
2017-10-31 10:52:52 +00:00
privacy: VideoPrivacy
}