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

16 lines
455 B

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