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

24 lines
423 B
TypeScript
Raw Normal View History

2017-06-10 20:15:25 +00:00
export interface Video {
2017-06-11 09:02:35 +00:00
id: string
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
views: number
likes: number
dislikes: number
nsfw: boolean
2017-06-10 20:15:25 +00:00
}