aboutsummaryrefslogtreecommitdiffstats
path: root/src/Models/NrkLinks.cs
blob: 69f5ae3de37881f260f95d636614b6e3f4771e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace I2R.LightNews.Models;

public class NrkLinks
{
    public LinkModel NextPage { get; set; }
    public LinkModel LastPage { get; set; }
    public LinkModel Share { get; set; }
    public LinkModel Episodes { get; set; }

    public class LinkModel
    {
        public string Href { get; set; }
    }
}