mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-23 21:21:36 +02:00
15 lines
No EOL
481 B
C#
15 lines
No EOL
481 B
C#
using System.Xml.Serialization;
|
|
using Hqub.MusicBrainz.API.Entities.Collections;
|
|
|
|
namespace Hqub.MusicBrainz.API.Entities.Metadata
|
|
{
|
|
[XmlRoot("metadata", Namespace = "http://musicbrainz.org/ns/mmd-2.0#")]
|
|
public class ReleaseGroupMetadata : MetadataWrapper
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the release-group collection.
|
|
/// </summary>
|
|
[XmlElement("release-group-list")]
|
|
public ReleaseGroupList Collection { get; set; }
|
|
}
|
|
} |