using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Providers
{
    public class RemoteSearchResult : IHasProviderIds
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the provider ids.
        /// 
        /// The provider ids.
        public Dictionary ProviderIds { get; set; }
        /// 
        /// Gets or sets the year.
        /// 
        /// The year.
        public int? ProductionYear { get; set; }
        public int? IndexNumber { get; set; }
        public int? IndexNumberEnd { get; set; }
        public int? ParentIndexNumber { get; set; }
        public DateTime? PremiereDate { get; set; }
        public string ImageUrl { get; set; }
        public string SearchProviderName { get; set; }
        public string Overview { get; set; }
        public RemoteSearchResult AlbumArtist { get; set; }
        public RemoteSearchResult[] Artists { get; set; }
        public RemoteSearchResult()
        {
            ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase);
            Artists = new RemoteSearchResult[] { };
        }
    }
}