<?php

namespace App\Dto\Input;

use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;

final class RenameImageInput
{
    #[Assert\NotNull]
    #[Groups(['image-image-repository:write'])]
    public ?string $newName = '';
}