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

21 lines
447 B

using System.Xml.Serialization;
namespace Hqub.MusicBrainz.API.Entities
{
[XmlRoot("label")]
public class Label
{
/// <summary>
/// Gets or sets the MusicBrainz id.
/// </summary>
[XmlAttribute("id")]
public string Id { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}