UNPKG

education-module-ai

Version:
19 lines (18 loc) 493 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LearningSessionResource = void 0; /** * Learning session resource model */ class LearningSessionResource { constructor() { this.id = ''; this.userId = ''; this.subject = 'mathematics'; this.level = 'beginner'; this.startTime = new Date(); this.active = true; this.messages = []; } } exports.LearningSessionResource = LearningSessionResource;