PeerTube/shared/models/videos/video-streaming-playlist.mo...

16 lines
350 B
TypeScript
Raw Normal View History

2019-01-29 08:37:25 +01:00
import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
import { VideoFile } from '@shared/models/videos/video-file.model'
2019-01-29 08:37:25 +01:00
export class VideoStreamingPlaylist {
id: number
type: VideoStreamingPlaylistType
playlistUrl: string
segmentsSha256Url: string
redundancies: {
baseUrl: string
}[]
files: VideoFile[]
2019-01-29 08:37:25 +01:00
}