pdnsmanager/frontend/src/app/apitypes/Update.apitype.ts
2018-04-29 19:40:57 +02:00

13 lines
204 B
TypeScript

export class UpdateApitype {
public updateRequired = false;
public currentVersion = 0;
public targetVersion = 0;
constructor(init: Object) {
Object.assign(this, init);
}
}