cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
22 lines (21 loc) • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MResetPassword = void 0;
/* INTERFACE END */
/* MODEL START */
class MResetPassword {
constructor(init) {
Object.assign(this, init);
}
Validate() {
let errorLogger = {};
if (!this.sylog_config_data) {
errorLogger.sylog_config_data = "Configuration Data is Required!";
}
if (!this.user_password) {
errorLogger.user_password = "Password is Required!";
}
return errorLogger;
}
}
exports.MResetPassword = MResetPassword;