Files
ersatztv/ErsatzTV.Infrastructure/Plex/Models/PlexWriterResponse.cs
T
Jason DoveandGitHub ec6eab97b2 plex scanner improvements (#747)
* 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
2022-04-21 09:54:38 -05:00

13 lines
240 B
C#

using System.Xml.Serialization;
namespace ErsatzTV.Infrastructure.Plex.Models;
public class PlexWriterResponse
{
[XmlAttribute("id")]
public int Id { get; set; }
[XmlAttribute("tag")]
public string Tag { get; set; }
}