qus-canvas
Version:
client api for canvas
18 lines (17 loc) • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LearningOutcomeDto = void 0;
class LearningOutcomeDto {
constructor(row) {
this.id = row.id;
this.createdAt = row.createdAt;
this.updatedAt = row.updatedAt;
this.deletedAt = row.deletedAt;
this.titleFull = row.titleFull;
this.titleShort = row.titleShort;
this.description = row.description;
this.code = row.code;
this.learningOutcomeTypesId = row.learningOutcomeTypesId;
}
}
exports.LearningOutcomeDto = LearningOutcomeDto;