DAO 追加

This commit is contained in:
2024-02-07 04:13:28 +09:00
parent 4b89165f8e
commit efa4ceedf8
2 changed files with 58 additions and 4 deletions
+5 -4
View File
@@ -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;
}