diff options
Diffstat (limited to 'shared/models/videos/caption')
-rw-r--r-- | shared/models/videos/caption/index.ts | 2 | ||||
-rw-r--r-- | shared/models/videos/caption/video-caption-update.model.ts | 4 | ||||
-rw-r--r-- | shared/models/videos/caption/video-caption.model.ts | 7 |
3 files changed, 0 insertions, 13 deletions
diff --git a/shared/models/videos/caption/index.ts b/shared/models/videos/caption/index.ts deleted file mode 100644 index 2a5ff512d..000000000 --- a/shared/models/videos/caption/index.ts +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | export * from './video-caption.model' | ||
2 | export * from './video-caption-update.model' | ||
diff --git a/shared/models/videos/caption/video-caption-update.model.ts b/shared/models/videos/caption/video-caption-update.model.ts deleted file mode 100644 index ff5728715..000000000 --- a/shared/models/videos/caption/video-caption-update.model.ts +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | export interface VideoCaptionUpdate { | ||
2 | language: string | ||
3 | captionfile: Blob | ||
4 | } | ||
diff --git a/shared/models/videos/caption/video-caption.model.ts b/shared/models/videos/caption/video-caption.model.ts deleted file mode 100644 index 6d5665006..000000000 --- a/shared/models/videos/caption/video-caption.model.ts +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | import { VideoConstant } from '../video-constant.model' | ||
2 | |||
3 | export interface VideoCaption { | ||
4 | language: VideoConstant<string> | ||
5 | captionPath: string | ||
6 | updatedAt: string | ||
7 | } | ||