using System.Text.Json.Serialization; namespace Jellyfin.Plugin.SRFPlay.Api.Models; /// /// Represents a paginated response from the Play v3 API. /// /// The type of data items. public class PlayV3Response { /// /// Gets or sets the data container. /// [JsonPropertyName("data")] public PlayV3DataContainer? Data { get; set; } }