export class SearchResult { total: number; start: number; limit: number; records: Entity[] constructor(total: number, start: number, limit: number, records: any[]) { this.total = total; this.start = start; this.limit = limit; this.records = records; } }