aboutsummaryrefslogtreecommitdiffstats
path: root/src/Models/Database/RadioSeries.cs
blob: 946b6ce0feed921d2ac912b38fae288943592111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace I2R.LightNews.Models;

public class RadioSeries
{
    public int Id { get; set; }
    public string NrkId { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public string Type { get; set; }
    public string CanonicalUrl { get; set; }
}