16 lines
308 B
C#
16 lines
308 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ErsatzTV.Infrastructure.Plex.Models;
|
|
|
|
public class PlexGenreResponse
|
|
{
|
|
[XmlAttribute("id")]
|
|
public int Id { get; set; }
|
|
|
|
[XmlAttribute("filter")]
|
|
public string Filter { get; set; }
|
|
|
|
[XmlAttribute("tag")]
|
|
public string Tag { get; set; }
|
|
}
|