aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/pods/remote-video/remote-video-author-create-request.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/pods/remote-video/remote-video-author-create-request.model.ts')
-rw-r--r--shared/models/pods/remote-video/remote-video-author-create-request.model.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/shared/models/pods/remote-video/remote-video-author-create-request.model.ts b/shared/models/pods/remote-video/remote-video-author-create-request.model.ts
deleted file mode 100644
index ae364d177..000000000
--- a/shared/models/pods/remote-video/remote-video-author-create-request.model.ts
+++ /dev/null
@@ -1,11 +0,0 @@
1import { RemoteVideoRequest } from './remote-video-request.model'
2
3export interface RemoteVideoAuthorCreateData {
4 uuid: string
5 name: string
6}
7
8export interface RemoteVideoAuthorCreateRequest extends RemoteVideoRequest {
9 type: 'add-author'
10 data: RemoteVideoAuthorCreateData
11}