export interface Media {
    id: string;
    title: string;
    mediaId: string;
    source: string;
    duration: number;
    thumbnail?: string;
    views: number;
    publishedAt?: Date;
}
