X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-streaming-playlist.model.ts;h=42fce4bdcfb4d848bfc5f79bab09f683cbe0bc41;hb=7cd1b12c19d0589d1d692ed0571ca0800f028aea;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..42fce4bdc 100644 --- a/shared/models/videos/video-streaming-playlist.model.ts +++ b/shared/models/videos/video-streaming-playlist.model.ts @@ -1,4 +1,5 @@ import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' +import { VideoFile } from '@shared/models/videos/video-file.model' export class VideoStreamingPlaylist { id: number @@ -9,4 +10,6 @@ export class VideoStreamingPlaylist { redundancies: { baseUrl: string }[] + + files: VideoFile[] }