このコミットが含まれているのは:
2024-02-07 04:13:28 +09:00
コミット efa4ceedf8
2個のファイルの変更58行の追加4行の削除
+5 -4
ファイルの表示
@@ -6,9 +6,10 @@ namespace Dto;
class
Thread
{
public int $id;
public string $title;
public ?string $explain;
public bool $deleted;
public int $id;
public string $title;
public ?string $explain;
public ?DateTime $latest;
public bool $deleted;
}