]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/live/live-video-session.model.ts
Support live session in server
[github/Chocobozzz/PeerTube.git] / shared / models / videos / live / live-video-session.model.ts
1 import { LiveVideoError } from './live-video-error.enum'
2
3 export interface LiveVideoSession {
4 id: number
5
6 startDate: string
7 endDate: string
8
9 error: LiveVideoError
10
11 replayVideo: {
12 id: number
13 uuid: string
14 shortUUID: string
15 }
16 }