aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/live/live-video-session.model.ts
blob: 7ff6afbe51bd1d8260419ce7c6ca1ed6abae4618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
  }
}