pdnsmanager/frontend/src/app/apitypes/Paging.apitype.ts
2018-04-09 11:16:06 +02:00

13 lines
187 B
TypeScript

export class PagingApitype {
public page = 1;
public total = 1;
public pagesize: number = null;
constructor(init: Object) {
Object.assign(this, init);
}
}