using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
    public class AlbumInfo : ItemLookupInfo
    {
        /// 
        /// Gets or sets the album artist.
        /// 
        /// The album artist.
        public string[] AlbumArtists { get; set; }
        /// 
        /// Gets or sets the artist provider ids.
        /// 
        /// The artist provider ids.
        public Dictionary ArtistProviderIds { get; set; }
        public List SongInfos { get; set; }
        public AlbumInfo()
        {
            ArtistProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase);
            SongInfos = new List();
            AlbumArtists = Array.Empty();
        }
    }
}