aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/angular/videos/models/video.ts
blob: e52c6d8861fb4ad5971358b2e7447e7a552346bf (plain) (blame)
1
2
3
4
5
6
7
8
export interface Video {
  id: string;
  name: string;
  description: string;
  magnetUri: string;
  podUrl: string;
  isLocal: boolean;
}