20 lines
590 B
C#
20 lines
590 B
C#
namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
|
|
{
|
|
/// <summary>
|
|
/// Class representing the base common structure of TubeArchivist API responses.
|
|
/// </summary>
|
|
/// <typeparam name="T">The contained data type.</typeparam>
|
|
public class ResponseContainer<T>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the contained data object.
|
|
/// </summary>
|
|
public T? Data { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the pagination info object.
|
|
/// </summary>
|
|
public PaginationInfo? Paginate { get; set; }
|
|
}
|
|
}
|