diff options
Diffstat (limited to 'client/angular/videos/models')
-rw-r--r-- | client/angular/videos/models/video.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/angular/videos/models/video.ts b/client/angular/videos/models/video.ts new file mode 100644 index 000000000..2f998c49a --- /dev/null +++ b/client/angular/videos/models/video.ts | |||
@@ -0,0 +1,6 @@ | |||
1 | export interface Video { | ||
2 | _id: string; | ||
3 | name: string; | ||
4 | description: string; | ||
5 | magnetUri: string; | ||
6 | } | ||