2021-07-24 19:21:24 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Rinsvent\RequestBundle\Annotation;
|
|
|
|
|
|
|
|
#[\Attribute]
|
|
|
|
class RequestDTO
|
|
|
|
{
|
|
|
|
public function __construct(
|
|
|
|
public string $className,
|
|
|
|
public string $jsonPath = '$',
|
2021-08-09 19:44:00 +03:00
|
|
|
public ?string $attributePath = null,
|
2021-07-24 19:21:24 +03:00
|
|
|
) {}
|
|
|
|
}
|