1
0
Fork 0
peertube/shared/models/videos/live/live-video-session.model.ts

17 lines
249 B
TypeScript
Raw Normal View History

2022-05-03 09:38:07 +00:00
import { LiveVideoError } from './live-video-error.enum'
export interface LiveVideoSession {
id: number
startDate: string
endDate: string
error: LiveVideoError
replayVideo: {
id: number
uuid: string
shortUUID: string
}
}