diff options
Diffstat (limited to 'shared/models/videos/file/video-file.model.ts')
-rw-r--r-- | shared/models/videos/file/video-file.model.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/shared/models/videos/file/video-file.model.ts b/shared/models/videos/file/video-file.model.ts deleted file mode 100644 index 2bbff48eb..000000000 --- a/shared/models/videos/file/video-file.model.ts +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | import { VideoConstant } from '../video-constant.model' | ||
2 | import { VideoFileMetadata } from './video-file-metadata.model' | ||
3 | import { VideoResolution } from './video-resolution.enum' | ||
4 | |||
5 | export interface VideoFile { | ||
6 | id: number | ||
7 | |||
8 | resolution: VideoConstant<VideoResolution> | ||
9 | size: number // Bytes | ||
10 | |||
11 | torrentUrl: string | ||
12 | torrentDownloadUrl: string | ||
13 | |||
14 | fileUrl: string | ||
15 | fileDownloadUrl: string | ||
16 | |||
17 | fps: number | ||
18 | |||
19 | metadata?: VideoFileMetadata | ||
20 | metadataUrl?: string | ||
21 | |||
22 | magnetUri: string | null | ||
23 | } | ||