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