aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/SeriesIdentity.cs
blob: 326d34027509d77a06e1ba093c3a6f7696913765 (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Controller.Providers
{
    public class SeriesIdentity : IItemIdentity
    {
        public string Type { get; set; }

        public string Id { get; set; }
    }
}