PeerTube/client/angular/videos/models/video.ts

9 lines
139 B
TypeScript
Raw Normal View History

2016-03-14 07:50:19 -05:00
export interface Video {
2016-03-18 10:28:09 -05:00
id: string;
2016-03-14 07:50:19 -05:00
name: string;
description: string;
magnetUri: string;
2016-03-18 10:28:09 -05:00
podUrl: string;
isLocal: boolean;
2016-03-14 07:50:19 -05:00
}