id = Uuid::v7(); } public function getId(): Uuid { return $this->id; } public function getTitle(): string { return $this->title; } public function setTitle(string $title): void { $this->title = $title; } public function isDone(): bool { return $this->done; } public function setDone(bool $done): void { $this->done = $done; } }