//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#pragma warning disable CA1002, CA2227, CS1591
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
public class AlbumInfo : ItemLookupInfo
{
public AlbumInfo()
{
ArtistProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase);
SongInfos = new List();
AlbumArtists = Array.Empty();
}
///
/// Gets or sets the album artist.
///
/// The album artist.
public IReadOnlyList AlbumArtists { get; set; }
///
/// Gets or sets the artist provider ids.
///
/// The artist provider ids.
public Dictionary ArtistProviderIds { get; set; }
public List SongInfos { get; set; }
}
}