mirror of https://github.com/ErsatzTV/ErsatzTV.git
5 changed files with 33 additions and 15 deletions
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
using System.Xml.Serialization; |
||||
|
||||
namespace ErsatzTV.Infrastructure.Plex.Models; |
||||
|
||||
public class PlexCollectionMetadataResponse |
||||
{ |
||||
[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("smart")] |
||||
public string Smart { get; set; } |
||||
|
||||
[XmlAttribute("librarySectionId")] |
||||
public int LibrarySectionId { get; set; } |
||||
|
||||
[XmlAttribute("childCount")] |
||||
public string ChildCount { get; set; } |
||||
} |
Loading…
Reference in new issue