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

public class NrkPlaybackManifest
{
    public PlayableModel Playable { get; set; }

    public class PlayableModel
    {
        public List<Asset> Assets { get; set; }

        public class Asset
        {
            public string Url { get; set; }
            public string Format { get; set; }
            public string MimeType { get; set; }
            public bool Encrypted { get; set; }
        }
    }
}