13 lines
316 B
PHP
13 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Dto\Input;
|
|
|
|
use ApiPlatform\Metadata\ApiProperty;
|
|
use Symfony\Component\Serializer\Annotation\Groups;
|
|
|
|
final class DeleteRepositoryInput
|
|
{
|
|
#[Groups(['image-image-repository:write'])]
|
|
#[ApiProperty(description: 'The repository name', example: "")]
|
|
public ?string $repository = null;
|
|
} |