Skip to content
Snippets Groups Projects
NewsCategory.php 556 B
Newer Older
    private string $name;
    private string $code;


    public function __construct(Uuid $id, string $name, string $code)
    {
        $this->id = $id;
        $this->name = $name;
        $this->code = $code;
    }

    {
        return $this->id;
    }

    public function getName(): string
    {
        return $this->name;
    }

    public function getCode(): string
    {
        return $this->code;
    }
}