Files
ersatztv/ErsatzTV.Infrastructure/Plex/Models/PlexCollectionItemMetadataResponse.cs
T
Jason DoveandGitHub c18be5559b fix delete old segments (#1536)
* code cleanup

* ignore errors deleting old hls segments
2024-01-04 10:42:04 -06:00

25 lines
547 B
C#

using System.Xml.Serialization;
namespace ErsatzTV.Infrastructure.Plex.Models;
public class PlexCollectionItemMetadataResponse
{
[XmlAttribute("key")]
public string Key { get; set; }
[XmlAttribute("ratingKey")]
public string RatingKey { get; set; }
[XmlAttribute("title")]
public string Title { get; set; }
[XmlAttribute("addedAt")]
public long AddedAt { get; set; }
[XmlAttribute("updatedAt")]
public long UpdatedAt { get; set; }
[XmlAttribute("type")]
public string Type { get; set; }
}