aboutsummaryrefslogtreecommitdiffstats
path: root/src/Models/Database/RadioEpisode.cs
blob: 508177b00d47fc19cea0c8d869b9e6b641e04749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace I2R.LightNews.Models;

public class RadioEpisode
{
    public int Id { get; set; }
    public int SeriesId { get; set; }
    public int SeasonId { get; set; }
    public string NrkId { get; set; }
    public string Title { get; set; }
    public string Subtitle { get; set; }
    public string SourceUrl { get; set; }
    public string CanonicalUrl { get; set; }
}