mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
Added MusicBrainz API project
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user