aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/video-channel-object.ts
blob: de504d84c05eab8b9fe4f2e78db3326f1877495b (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface VideoChannelObject {
  type: 'VideoChannel'
  id: string
  name: string
  content: string
  uuid: string
  published: Date
  updated: Date
}