pdnsmanager/frontend/src/app/apitypes/Domain.apitype.ts

17 lines
231 B
TypeScript
Raw Normal View History

2018-04-09 11:16:06 +02:00
export class DomainApitype {
public id = 0;
public name = '';
public type = '';
public master: string = null;
public records = 0;
constructor(init: Object) {
Object.assign(this, init);
}
}