aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/video-channel-object.ts')
-rw-r--r--shared/models/activitypub/objects/video-channel-object.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/video-channel-object.ts b/shared/models/activitypub/objects/video-channel-object.ts
new file mode 100644
index 000000000..d64b4aed8
--- /dev/null
+++ b/shared/models/activitypub/objects/video-channel-object.ts
@@ -0,0 +1,8 @@
1import { ActivityIdentifierObject } from './common-objects'
2
3export interface VideoChannelObject {
4 type: 'VideoChannel'
5 name: string
6 content: string
7 uuid: ActivityIdentifierObject
8}