pdnsmanager/frontend/src/app/apitypes/User.apitype.ts
2018-04-08 13:02:00 +02:00

18 lines
274 B
TypeScript

export class UserApitype {
public id: number = null;
public name: string = null;
public type: string = null;
public native: boolean = null;
public password: string = null;
constructor(init: Object) {
Object.assign(this, init);
}
}