using System.Collections.Generic; 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")] public List Guid { get; set; } } }