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

15 lines
214 B
TypeScript
Raw Normal View History

2018-04-12 14:19:12 +02:00
export class CredentialApitype {
public id = 0;
public description = '';
public type = '';
public key: string = null;
constructor(init: Object) {
Object.assign(this, init);
}
}