<?php
declare(strict_types=1);
namespace App\Api\Request;
use App\Infrastructure\Http\RequestDtoInterface;
class SignRequest implements RequestDtoInterface
{
public string $url;
public int $batch;
public string $apiToken;
}