Files
ersatztv/ErsatzTV.Infrastructure/Plex/Models/PlexXmlMetadataResponse.cs
T
Jason DoveandGitHub 245c4ec359 code analysis and cleanup (#1411)
* cleanup scanner project

* cleanup infrastructure projects

* cleanup ffmpeg project

* cleanup core project

* cleanup app project

* cleanup main project

* update dependencies

* code cleanup
2023-09-03 06:23:42 -05:00

18 lines
513 B
C#

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<PlexMediaResponse<PlexXmlPartResponse>> Media { get; set; }
[XmlElement("Guid")]
[SuppressMessage("Naming", "CA1720:Identifier contains type name")]
public List<PlexGuidResponse> Guid { get; set; }
}