24 lines
421 B
C#
24 lines
421 B
C#
using System.Collections.Generic;
|
|
using AyaNova.Models;
|
|
|
|
namespace AyaNova.Api.ControllerHelpers
|
|
{
|
|
|
|
|
|
|
|
public class ApiPagedResponse<T>
|
|
{
|
|
|
|
public T[] items { get; }
|
|
public object PageLinks { get; }
|
|
|
|
public ApiPagedResponse(T[] returnItems, object pageLinks)
|
|
{
|
|
items = returnItems;
|
|
PageLinks = pageLinks;
|
|
|
|
}
|
|
}//eoc
|
|
|
|
|
|
}//eons |