<?php
namespace App\Entity;
use App\Model\Entity;
use App\Repository\ActivityAreaRepository;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ORM\Entity(repositoryClass: ActivityAreaRepository::class)]
class ActivityArea extends Entity
{
#[ORM\Column(length: 150)]
#[Groups('activity_area:read')]
private ?string $name = null;
public function __construct(string $name = null)
{
$this->name = $name;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
}