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.ts6
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 @@
1export interface Video {
2 _id: string;
3 name: string;
4 description: string;
5 magnetUri: string;
6}