From 59c76ffa8f503e962d517c78f033f1beccb1de1a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 14 Aug 2018 14:59:53 +0200 Subject: Flat shared module directory --- shared/models/videos/caption/video-caption-update.model.ts | 4 ++++ shared/models/videos/caption/video-caption.model.ts | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 shared/models/videos/caption/video-caption-update.model.ts create mode 100644 shared/models/videos/caption/video-caption.model.ts (limited to 'shared/models/videos/caption') diff --git a/shared/models/videos/caption/video-caption-update.model.ts b/shared/models/videos/caption/video-caption-update.model.ts new file mode 100644 index 000000000..ff5728715 --- /dev/null +++ b/shared/models/videos/caption/video-caption-update.model.ts @@ -0,0 +1,4 @@ +export interface VideoCaptionUpdate { + language: string + captionfile: Blob +} 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 @@ +import { VideoConstant } from '../video-constant.model' + +export interface VideoCaption { + language: VideoConstant + captionPath: string +} -- cgit v1.2.3