blob: 2464e25703d8bcf3dc60176c40ac9d6981af8586 (
plain) (
tree)
|
|
import { LiveVideoError } from './live-video-error.enum'
export interface LiveVideoSession {
id: number
startDate: string
endDate: string
error: LiveVideoError
saveReplay: boolean
endingProcessed: boolean
replayVideo: {
id: number
uuid: string
shortUUID: string
}
}
|