mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-26 14:41:57 +02:00
26 lines
653 B
C#
26 lines
653 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace Hqub.MusicBrainz.API.Entities
|
|
{
|
|
[XmlRoot("work", Namespace = "http://musicbrainz.org/ns/mmd-2.0#")]
|
|
public class Work
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the MusicBrainz id.
|
|
/// </summary>
|
|
[XmlAttribute("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the title.
|
|
/// </summary>
|
|
[XmlElement("title")]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ISW code.
|
|
/// </summary>
|
|
[XmlElement("iswc")]
|
|
public string ISWC { get; set; }
|
|
}
|
|
}
|