Files
haushalt/backend/src/DTO/Request/UpdateCategoryRequest.php
2026-03-30 15:42:44 +02:00

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;
}