feat: trying to connect to the bach

This commit is contained in:
2025-04-28 22:49:07 +02:00
parent 6d84b3ff93
commit 9f4596d0ba
5 changed files with 141 additions and 185 deletions

View File

@ -43,6 +43,15 @@ class SectionCell {
set modificationDate(value: string | undefined) {
this._modificationDate = value;
}
toPlainObject() {
return {
idSectionCell: this._idSectionCell,
sectionId: this._sectionId,
contentSectionCell: this._contentSectionCell,
modificationDate: this._modificationDate,
};
}
}
export default SectionCell;