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, 11 insertions, 0 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
new file mode 100644
index 000000000..ae364d177
--- /dev/null
+++ b/shared/models/pods/remote-video/remote-video-author-create-request.model.ts
@@ -0,0 +1,11 @@
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}