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

13 lines
223 B
TypeScript

import { PagingApitype } from './Paging.apitype';
export class ListApitype<T> {
public paging: PagingApitype;
public results: T[] = [];
constructor(init: Object) {
Object.assign(this, init);
}
}