pdnsmanager/frontend/src/app/apitypes/Credential.apitype.ts
2018-04-12 14:19:12 +02:00

15 lines
214 B
TypeScript

export class CredentialApitype {
public id = 0;
public description = '';
public type = '';
public key: string = null;
constructor(init: Object) {
Object.assign(this, init);
}
}