using System.Diagnostics.CodeAnalysis; using System.Xml.Serialization; namespace ErsatzTV.Infrastructure.Plex.Models; public class PlexXmlMetadataResponse : PlexMetadataResponse { [XmlAttribute("guid")] public string PlexGuid { get; set; } [XmlElement("Media")] public new List> Media { get; set; } [XmlElement("Guid")] [SuppressMessage("Naming", "CA1720:Identifier contains type name")] public List Guid { get; set; } }