feat(WIP): 베팅 개시 타입 변경

-candidate를 미리 추가.
-이를 통해 betting을 중립적으로 운용 가능
This commit is contained in:
2022-01-26 23:10:55 +09:00
parent 3a2fdce3d9
commit f59449c15b
7 changed files with 101 additions and 35 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace Sammo\DTO;
use Spatie\DataTransferObject\Attributes\Strict;
use Spatie\DataTransferObject\DataTransferObject;
#[Strict]
class SelectItem extends DataTransferObject
{
public string $title;
public ?string $info;
public ?bool $isHtml;
public ?array $aux;
}