. */ declare(strict_types=1); namespace SP\Domain\Common\Attributes; use Attribute; use SP\Domain\Common\Enums\ResponseType; /** * Class Action */ #[Attribute(Attribute::TARGET_METHOD)] final class Action { public function __construct(public readonly ResponseType $responseType) { } }