20 lines
330 B
PHP
20 lines
330 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\DTO;
|
|
|
|
use App\Enums\WbEndpoint;
|
|
|
|
final readonly class WbRequestDTO
|
|
{
|
|
public function __construct(
|
|
public WbEndpoint $endpoint,
|
|
public string $dateFrom,
|
|
public ?string $dateTo,
|
|
public int $page = 1,
|
|
public int $limit = 500,
|
|
) {
|
|
}
|
|
}
|