using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.SRFPlay.Api.Models.PlayV3;
///
/// TV Program Guide response from Play v3 API.
///
public class PlayV3TvProgramGuideResponse
{
///
/// Gets the list of TV program entries.
///
[JsonPropertyName("data")]
public IReadOnlyList? Data { get; init; }
}