2017-06-10 15:15:25 -05:00
|
|
|
export interface Video {
|
2017-07-11 09:01:56 -05:00
|
|
|
id: number
|
|
|
|
uuid: string
|
2017-06-11 04:02:35 -05:00
|
|
|
author: string
|
|
|
|
createdAt: Date
|
|
|
|
categoryLabel: string
|
|
|
|
category: number
|
|
|
|
licenceLabel: string
|
|
|
|
licence: number
|
|
|
|
languageLabel: string
|
|
|
|
language: number
|
|
|
|
description: string
|
|
|
|
duration: number
|
|
|
|
isLocal: boolean
|
|
|
|
magnetUri: string
|
|
|
|
name: string
|
|
|
|
podHost: string
|
|
|
|
tags: string[]
|
|
|
|
thumbnailPath: string
|
2017-07-12 04:56:02 -05:00
|
|
|
previewPath: string
|
2017-06-11 04:02:35 -05:00
|
|
|
views: number
|
|
|
|
likes: number
|
|
|
|
dislikes: number
|
|
|
|
nsfw: boolean
|
2017-06-10 15:15:25 -05:00
|
|
|
}
|