X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-streaming-playlist.model.ts;h=b547a0ac73603359cc2f3c43a57c2b5730a9288d;hb=20213fbd2a366dffc35aa7dddad71323893f8d62;hp=17f8fe865cc680d2cf2d4c8060a416b4f5fab41b;hpb=b718fd22374d64534bcfe69932cf562894abed6a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-streaming-playlist.model.ts b/shared/models/videos/video-streaming-playlist.model.ts index 17f8fe865..b547a0ac7 100644 --- a/shared/models/videos/video-streaming-playlist.model.ts +++ b/shared/models/videos/video-streaming-playlist.model.ts @@ -1,6 +1,7 @@ import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' +import { VideoFile } from './video-file.model' -export class VideoStreamingPlaylist { +export interface VideoStreamingPlaylist { id: number type: VideoStreamingPlaylistType playlistUrl: string @@ -9,4 +10,6 @@ export class VideoStreamingPlaylist { redundancies: { baseUrl: string }[] + + files: VideoFile[] }