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

21 lines
268 B
TypeScript
Raw Normal View History

2018-04-12 09:27:56 +02:00
export class RecordApitype {
public id = 0;
public name = '';
public type = '';
public content = '';
public priority = 0;
public ttl = 0;
public domain = 0;
constructor(init: Object) {
Object.assign(this, init);
}
}