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

20 lines
472 B

using System.Xml.Serialization;
namespace Hqub.MusicBrainz.API.Entities
{
[XmlRoot("name-credit")]
public class NameCredit
{
/// <summary>
/// Gets or sets the joinphrase.
/// </summary>
[XmlAttribute("joinphrase")]
public string JoinPhrase { get; set; }
/// <summary>
/// Gets or sets the artist.
/// </summary>
[XmlElement("artist")]
public Artist Artist { get; set; }
}
}