using System.Collections.Generic; using AyaNova.Models; namespace AyaNova.Api.ControllerHelpers { public class ApiPagedResponse { public T[] items { get; } public object PageLinks { get; } public ApiPagedResponse(T[] returnItems, object pageLinks) { items = returnItems; PageLinks = pageLinks; } }//eoc }//eons