export interface Video {
  id: string;
  name: string;
  description: string;
  magnetUri: string;
  podUrl: string;
  isLocal: boolean;
}