using System.Text.Json.Serialization; namespace Jellyfin.Plugin.JRay.Models; /// /// One labelled row of a coverage breakdown (e.g. a single genre, or a single /// media type such as "Film" or "TV"). /// public class CoverageBreakdownRow { /// /// Gets or sets the label for this row (genre name or media type name). /// [JsonPropertyName("label")] public string Label { get; set; } = string.Empty; /// /// Gets or sets the coverage counts for this row. /// [JsonPropertyName("counts")] public CoverageCounts Counts { get; set; } = new(); }