Files
Mangarr/assets/react/app/domain/chapter.js
2025-02-12 16:12:01 +01:00

10 lines
251 B
JavaScript

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;
}
}