Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
547 B

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; }
}