Begin video watch design

This commit is contained in:
Chocobozzz
2017-12-06 17:15:59 +01:00
parent ce0e281d46
commit b1fa3eba70
29 changed files with 330 additions and 431 deletions

View File

@@ -1,3 +1,4 @@
import { Account } from '../accounts'
import { VideoChannel } from './video-channel.model'
import { VideoPrivacy } from './video-privacy.enum'
@@ -13,7 +14,7 @@ export interface VideoFile {
export interface Video {
id: number
uuid: string
account: string
accountName: string
createdAt: Date | string
updatedAt: Date | string
categoryLabel: string
@@ -43,4 +44,5 @@ export interface VideoDetails extends Video {
descriptionPath: string
channel: VideoChannel
files: VideoFile[]
account: Account
}