]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-streaming-playlist.model.ts
Add ability to disable webtorrent
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
CommitLineData
09209296 1import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
d7a25329 2import { VideoFile } from '@shared/models/videos/video-file.model'
09209296
C
3
4export class VideoStreamingPlaylist {
5 id: number
6 type: VideoStreamingPlaylistType
7 playlistUrl: string
8 segmentsSha256Url: string
9
10 redundancies: {
11 baseUrl: string
12 }[]
d7a25329
C
13
14 files: VideoFile[]
09209296 15}