diff options
Diffstat (limited to 'shared/models/videos/live/live-video-session.model.ts')
-rw-r--r-- | shared/models/videos/live/live-video-session.model.ts | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/shared/models/videos/live/live-video-session.model.ts b/shared/models/videos/live/live-video-session.model.ts deleted file mode 100644 index 888c20a8a..000000000 --- a/shared/models/videos/live/live-video-session.model.ts +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | import { VideoPrivacy } from '../video-privacy.enum' | ||
2 | import { LiveVideoError } from './live-video-error.enum' | ||
3 | |||
4 | export interface LiveVideoSession { | ||
5 | id: number | ||
6 | |||
7 | startDate: string | ||
8 | endDate: string | ||
9 | |||
10 | error: LiveVideoError | ||
11 | |||
12 | saveReplay: boolean | ||
13 | endingProcessed: boolean | ||
14 | |||
15 | replaySettings?: { privacy: VideoPrivacy } | ||
16 | |||
17 | replayVideo: { | ||
18 | id: number | ||
19 | uuid: string | ||
20 | shortUUID: string | ||
21 | } | ||
22 | } | ||