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

9 lines
139 B
TypeScript
Raw Normal View History

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