Files
podnoms/server/Models/Playlist.cs
Fergal Moran 1a92ad80eb Feature switch
2018-03-14 10:50:57 +00:00

11 lines
346 B
C#
Executable File

using System.Collections.Generic;
namespace PodNoms.Api.Models {
public class Playlist : BaseModel {
public int Id { get; set; }
public int PodcastId { get; set; }
public string SourceUrl { get; set; }
public Podcast Podcast { get; set; }
public List<PodcastEntry> PodcastEntries { get; set; }
}
}