Files
LanBackup/src/LanBackup.WebApp/ClientApp/app/model/StatusReportInfo.ts
T
2017-02-02 01:31:36 +02:00

13 lines
236 B
TypeScript

export class StatusReportInfo {
iP: string;
configurationId: string;
statusType: number;
statusDescription: string;
statusPercent: number;
statusDateTime: Date;
constructor(data) {
Object.assign(this, data);
}
}