UNPKG

cloud-ide-lms-model

Version:

Package for Model management of Cloud IDEsys LMS

19 lines (18 loc) 454 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MEntitySwitch = void 0; /* INTERFACE END */ /* MODEL START */ class MEntitySwitch { constructor(init) { Object.assign(this, init); } Validate() { let errorLogger = {}; if (!this.syen_id) { errorLogger.syen_id = "Entity ID is Required"; } return errorLogger; } } exports.MEntitySwitch = MEntitySwitch;