]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-streaming-playlist.model.ts
Create a dedicated table to track video thumbnails
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-streaming-playlist.model.ts
CommitLineData
09209296
C
1import { VideoStreamingPlaylistType } from './video-streaming-playlist.type'
2
3export class VideoStreamingPlaylist {
4 id: number
5 type: VideoStreamingPlaylistType
6 playlistUrl: string
7 segmentsSha256Url: string
8
9 redundancies: {
10 baseUrl: string
11 }[]
12}