You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Hqub.MusicBrainz.API/Entities/Collections/ArtistList.cs

16 lines
426 B

using System.Collections.Generic;
using System.Xml.Serialization;
namespace Hqub.MusicBrainz.API.Entities.Collections
{
[XmlRoot("artist-list", Namespace = "http://musicbrainz.org/ns/mmd-2.0#")]
public class ArtistList : BaseList
{
/// <summary>
/// Gets or sets the list of artists.
/// </summary>
[XmlElement("artist")]
public List<Artist> Items { get; set; }
}
}