"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Chapter = void 0;
class Chapter {
constructor(title) {
this.content = '';
if (title) {
this.title = title;
}
else {
this.title = '';
}
}
}
exports.Chapter = Chapter;