aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
blob: d64b4aed85c4f8880b199f154511b65f016ee192 (plain) (blame)
1
2
3
4
5
6
7
8
import { ActivityIdentifierObject } from './common-objects'

export interface VideoChannelObject {
  type: 'VideoChannel'
  name: string
  content: string
  uuid: ActivityIdentifierObject
}