chore: initial import for test contour

This commit is contained in:
sova-bootstrap
2026-05-27 19:36:32 +03:00
commit 166cdb148e
282 changed files with 84872 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
namespace App\Dto;
class ScheduleDayDto
{
public function __construct(
public string $schedident,
public string $rnum,
public string $dcode,
public int $filial,
public array $intervals,
public string $depnum,
public bool $isFree
) {}
}
class ScheduleIntervalDto
{
public function __construct(
public string $time,
public bool $isFree
) {}
}
class ScheduleResponseDto
{
public function __construct(
public array $schedule = [],
public array $nearestDate = []
) {}
}