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