キケッツ掲示板のリポジトリです. https://bbs.kekec.wiki
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
184 B

  1. <?php
  2. namespace Dto;
  3. class
  4. Thread
  5. {
  6. public int $id;
  7. public string $title;
  8. public ?string $explain;
  9. public ?DateTime $latest;
  10. public bool $deleted;
  11. }