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