aboutsummaryrefslogtreecommitdiffstats
path: root/src/Models/RadioSeries.cs
blob: 6bd4efed8b6304ecf05e6220843ed692717cd71c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace I2R.LightNews.Models;

public class RadioSeries
{
    public string Name { get; set; }
    public string Description { get; set; }
    public string Type { get; set; }
    public Uri CanonicalUri { get; set; }
    public List<Episode> Episodes { get; set; }

    public class Episode
    {
        public string Title { get; set; }
        public string Subtitle { get; set; }
        public Uri SourceUri { get; set; }
        public Uri CanonicalUri { get; set; }
    }
}