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