first commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user