17 lines
431 B
C#
17 lines
431 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.SRFPlay.Api.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a paginated response from the Play v3 API.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of data items.</typeparam>
|
|
public class PlayV3Response<T>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the data container.
|
|
/// </summary>
|
|
[JsonPropertyName("data")]
|
|
public PlayV3DataContainer<T>? Data { get; set; }
|
|
}
|