* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
18 lines
513 B
C#
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; }
|
|
}
|