aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/caption/video-caption.model.ts
blob: 6d56650063d0769e98bc3dbe0dbc8f9ddcf18df8 (plain) (blame)
1
2
3
4
5
6
7
import { VideoConstant } from '../video-constant.model'

export interface VideoCaption {
  language: VideoConstant<string>
  captionPath: string
  updatedAt: string
}