using System.Collections.Generic; namespace AIK.Models.ApiModels { public class ApiPageResult { public List Records { get; set; } = new(); public long Total { get; set; } public long Current { get; set; } public long Size { get; set; } public long Pages { get; set; } } }