cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
15 lines (14 loc) • 422 B
JavaScript
;
/**
* Fee Structure Schema
* Defines the structure of fees for a specific program/class/category
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeeStructure = exports.FeeStructureBase = void 0;
/* BASE INTERFACE START */
class FeeStructureBase {
}
exports.FeeStructureBase = FeeStructureBase;
class FeeStructure extends FeeStructureBase {
}
exports.FeeStructure = FeeStructure;