export interface LearnDataProps {
  id: number;
  attributes?: {
    videoTitle?: string;
    playlistName?: string;
    totalVideos?: number;
    videoContent?: string;
    author?: string;
    playlistAuthor?: string;
    duration?: number;
    isPopular?: boolean;
    views?: number;
    createdAt: Date;
    updatedAt: Date;
    publishedAt: Date;
    video?: any;
    videos?: any;
    videoThumbnail: any;
    thumbnail?: any;
  };
}
