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

17 lines
231 B
TypeScript

export class DomainApitype {
public id = 0;
public name = '';
public type = '';
public master: string = null;
public records = 0;
constructor(init: Object) {
Object.assign(this, init);
}
}