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/ReleaseList.cs

16 lines
431 B

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