14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace Rinsvent\RequestBundle\Annotation;
|
|
|
|
#[\Attribute]
|
|
class RequestDTO
|
|
{
|
|
public function __construct(
|
|
public string $className,
|
|
public string $jsonPath = '$',
|
|
public ?string $attributePath = null,
|
|
) {}
|
|
}
|