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

20 lines
323 B
TypeScript

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