video-streaming-playlist.model.ts 261 B

123456789101112
  1. import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
  2. export class VideoStreamingPlaylist {
  3. id: number
  4. type: VideoStreamingPlaylistType
  5. playlistUrl: string
  6. segmentsSha256Url: string
  7. redundancies: {
  8. baseUrl: string
  9. }[]
  10. }