aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/angular/videos/models/video.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/angular/videos/models/video.ts')
-rw-r--r--client/angular/videos/models/video.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/angular/videos/models/video.ts b/client/angular/videos/models/video.ts
index 2f998c49a..e52c6d886 100644
--- a/client/angular/videos/models/video.ts
+++ b/client/angular/videos/models/video.ts
@@ -1,6 +1,8 @@
1export interface Video { 1export interface Video {
2 _id: string; 2 id: string;
3 name: string; 3 name: string;
4 description: string; 4 description: string;
5 magnetUri: string; 5 magnetUri: string;
6 podUrl: string;
7 isLocal: boolean;
6} 8}