mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
16 lines
431 B
C#
16 lines
431 B
C#
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; }
|
|
}
|
|
}
|