* plex api cleanup * improve plex movie scanner * sync plex collections as tags * improve plex tv library scanner * update dependencies * fix plex season and episode collection tags
19 lines
370 B
C#
19 lines
370 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ErsatzTV.Infrastructure.Plex.Models;
|
|
|
|
public class PlexRoleResponse
|
|
{
|
|
[XmlAttribute("id")]
|
|
public int Id { get; set; }
|
|
|
|
[XmlAttribute("tag")]
|
|
public string Tag { get; set; }
|
|
|
|
[XmlAttribute("role")]
|
|
public string Role { get; set; }
|
|
|
|
[XmlAttribute("thumb")]
|
|
public string Thumb { get; set; }
|
|
}
|