id = $id; $this->name = $name; $this->description = $description; $this->image = $image; $this->createAt = $createAt; $this->detailLink = $detailLink; } public function getId(): Uuid { return $this->id; } public function getName(): string { return $this->name; } public function getDescription(): string { return $this->description; } public function getImage(): File { return $this->image; } public function getCreateAt(): string { return $this->createAt; } public function getDetailLink(): string { return $this->detailLink; } }