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

export interface VideoChannelObject {
  type: 'VideoChannel'
  id: string
  name: string
  content: string
  uuid: string
  published: Date
  updated: Date
}