15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
namespace App\DTO\Request;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
class UpdateCategoryRequest
|
|
{
|
|
#[Assert\Length(min: 1, max: 255)]
|
|
public ?string $name = null;
|
|
|
|
#[Assert\CssColor(formats: Assert\CssColor::HEX_LONG)]
|
|
public ?string $color = null;
|
|
}
|