diff options
Diffstat (limited to 'shared/models/pods/remote-video/remote-video-channel-create-request.model.ts')
-rw-r--r-- | shared/models/pods/remote-video/remote-video-channel-create-request.model.ts | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/shared/models/pods/remote-video/remote-video-channel-create-request.model.ts b/shared/models/pods/remote-video/remote-video-channel-create-request.model.ts deleted file mode 100644 index 54163a2db..000000000 --- a/shared/models/pods/remote-video/remote-video-channel-create-request.model.ts +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | import { RemoteVideoRequest } from './remote-video-request.model' | ||
2 | |||
3 | export interface RemoteVideoChannelCreateData { | ||
4 | uuid: string | ||
5 | name: string | ||
6 | description: string | ||
7 | createdAt: Date | ||
8 | updatedAt: Date | ||
9 | ownerUUID: string | ||
10 | } | ||
11 | |||
12 | export interface RemoteVideoChannelCreateRequest extends RemoteVideoRequest { | ||
13 | type: 'add-channel' | ||
14 | data: RemoteVideoChannelCreateData | ||
15 | } | ||