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