mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-07 00:56:40 +00:00
11 lines
346 B
C#
11 lines
346 B
C#
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; }
|
|
}
|
|
} |