Duncan Tourolle ac6a3842dd
Some checks failed
🏗️ Build Plugin / call (push) Failing after 0s
📝 Create/Update Release Draft & Release Bump PR / call (push) Failing after 0s
🧪 Test Plugin / call (push) Failing after 0s
🔬 Run CodeQL / call (push) Failing after 0s
first commit
2025-11-12 22:05:36 +01:00

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; }
}