Added MusicBrainz API project

This commit is contained in:
Matthew Despain
2017-03-30 20:37:24 -06:00
parent 7208d4c887
commit a37add2f7a
41 changed files with 2546 additions and 2 deletions
@@ -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; }
}
}