5 lines
75 B
TypeScript
5 lines
75 B
TypeScript
|
export class DataTableData<T> {
|
||
|
data = new Array<T>();
|
||
|
totalCount = 0;
|
||
|
}
|