You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/models/pageSettings.ts

19 lines
298 B
TypeScript

import { SortOrderEnum } from '../services/consts-enums-functions';
export class TableSetting {
tableId: string;
recordsPerPage?: number;
sortBy?: string;
sortOrder?: SortOrderEnum;
showColumns?: any[];
}
export class PageSettingsCLN {
pageId: string;
tables: TableSetting[];
}