mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
16 lines
416 B
C#
16 lines
416 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Hqub.MusicBrainz.API.Entities.Collections
|
|
{
|
|
[XmlRoot("work-list", Namespace = "http://musicbrainz.org/ns/mmd-2.0#")]
|
|
public class WorkList : BaseList
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the list of works.
|
|
/// </summary>
|
|
[XmlElement("work")]
|
|
public List<Work> Items { get; set; }
|
|
}
|
|
}
|