list notes

This commit is contained in:
Tykayn 2025-06-01 23:35:15 +02:00 committed by tykayn
parent 0f5ff6ed45
commit cb90be8ff2
10 changed files with 119 additions and 36 deletions

View file

@ -79,6 +79,9 @@ class Place
#[ORM\Column(nullable: true)]
private ?string $main_tag = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $note_content = null;
public function getMainTag(): ?string
{
return $this->main_tag;
@ -416,4 +419,16 @@ class Place
return $this;
}
public function getNoteContent(): ?string
{
return $this->note_content;
}
public function setNoteContent(?string $note_content): static
{
$this->note_content = $note_content;
return $this;
}
}