<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use App\Repository\VacanciesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: VacanciesRepository::class)]
#[ApiResource]
class Vacancies
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $name = null;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
}