11 lines
174 B
PHP
11 lines
174 B
PHP
<?php
|
|
|
|
namespace Rinsvent\Data2DTO\Tests\unit\Converter\fixtures\FillTest;
|
|
|
|
class BuyRequest
|
|
{
|
|
public string $phrase;
|
|
public int $length;
|
|
public bool $isFirst;
|
|
}
|