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

9 lines
139 B
TypeScript
Raw Normal View History

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