aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/caption/video-caption.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/caption/video-caption.model.ts')
-rw-r--r--shared/models/videos/caption/video-caption.model.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/shared/models/videos/caption/video-caption.model.ts b/shared/models/videos/caption/video-caption.model.ts
new file mode 100644
index 000000000..d3c73e1a6
--- /dev/null
+++ b/shared/models/videos/caption/video-caption.model.ts
@@ -0,0 +1,6 @@
1import { VideoConstant } from '../video-constant.model'
2
3export interface VideoCaption {
4 language: VideoConstant<string>
5 captionPath: string
6}