/**
* Common Class to provide or obtain a value, when there are multiple supported values.
*/classChoice {
value;
constructor(value) {
this.value = value;
}
getValue() {
returnthis.value;
}
}
module.exports = {
MasterModel : Choice,
Choice : Choice
}