using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Text.Json.Serialization; namespace Jellyfin.Plugin.SRFPlay.Api.Models; /// /// Represents a direct data response (for shows list). /// /// The type of data items. public class PlayV3DirectResponse { /// /// Gets or sets the list of data items. /// [JsonPropertyName("data")] [SuppressMessage("Usage", "CA2227:Collection properties should be read only", Justification = "Required for JSON deserialization")] [SuppressMessage("Design", "CA1002:Do not expose generic lists", Justification = "DTO for JSON deserialization")] public List? Data { get; set; } }