aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaUrl.cs
blob: 24e3b14927c24a5d1bcbc01f1d33683247bfe8eb (plain)
1
2
3
4
5
6
7
8
9
10
namespace MediaBrowser.Model.Entities
{
    public class MediaUrl
    {
        public string Url { get; set; }
        public string Name { get; set; }
        public VideoSize? VideoSize { get; set; }
    }
}