first commit
🏗️ 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

This commit is contained in:
2025-11-12 22:05:36 +01:00
parent d544b71939
commit ac6a3842dd
46 changed files with 5891 additions and 499 deletions
@@ -0,0 +1,16 @@
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; }
}