From 59c76ffa8f503e962d517c78f033f1beccb1de1a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 14 Aug 2018 14:59:53 +0200 Subject: Flat shared module directory --- shared/models/videos/channel/video-channel.model.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shared/models/videos/channel/video-channel.model.ts (limited to 'shared/models/videos/channel/video-channel.model.ts') diff --git a/shared/models/videos/channel/video-channel.model.ts b/shared/models/videos/channel/video-channel.model.ts new file mode 100644 index 000000000..92918f66c --- /dev/null +++ b/shared/models/videos/channel/video-channel.model.ts @@ -0,0 +1,11 @@ +import { Actor } from '../../actors/actor.model' +import { Video } from '../video.model' +import { Account } from '../../actors/index' + +export interface VideoChannel extends Actor { + displayName: string + description: string + support: string + isLocal: boolean + ownerAccount?: Account +} -- cgit v1.2.3