feat: Ajout de React pour le front, début de refonte du front
This commit is contained in:
parent
73774f84ff
commit
666636e5bf
10
assets/react/app/domain/chapter.js
Normal file
10
assets/react/app/domain/chapter.js
Normal file
@@ -0,0 +1,10 @@
|
||||
export class Chapter {
|
||||
constructor(id, number, title, volume, isVisible, createdAt) {
|
||||
this.id = id;
|
||||
this.number = number;
|
||||
this.title = title;
|
||||
this.volume = volume;
|
||||
this.isVisible = isVisible;
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user