using System.Collections.Generic; namespace PodNoms.Api.Models { public class Playlist : BaseEntity { //TODO: Update this to use concrete model public string SourceUrl { get; set; } public int PodcastId { get; set; } public Podcast Podcast { get; set; } public List PodcastEntries { get; set; } public List ParsedPlaylistItems { get; set; } public Playlist() { ParsedPlaylistItems = new List(); } } public class ParsedPlaylistItem : BaseEntity { public string VideoId { get; set; } public string VideoType { get; set; } public bool IsProcessed { get; set; } public int PlaylistId { get; set; } public Playlist Playlist { get; set; } } }