export default class Paged { public Data: Array; public readonly TotalRecords: number; public readonly PageSize: number; public readonly PageCount: number; public constructor(totalRecords: number, pageSize: number) { this.Data = new Array(); this.TotalRecords = totalRecords; this.PageSize = pageSize; this.PageCount = Math.max(Math.ceil(totalRecords / pageSize), 1); } }