using System.Text.Json.Serialization; namespace Jellyfin.Plugin.SRFPlay.Api.Models; /// /// Represents a topic/category from the Play v3 API. /// public class PlayV3Topic { /// /// Gets or sets the topic ID (UUID). /// [JsonPropertyName("id")] public string? Id { get; set; } /// /// Gets or sets the topic title. /// [JsonPropertyName("title")] public string? Title { get; set; } /// /// Gets or sets the topic description/lead. /// [JsonPropertyName("lead")] public string? Lead { get; set; } /// /// Gets or sets the transmission type (TV or Radio). /// [JsonPropertyName("transmission")] public string? Transmission { get; set; } }