キケッツ掲示板のリポジトリです. 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.

response.php 387 B

7 months ago
1234567891011121314151617181920212223
  1. <?php
  2. namespace Dto;
  3. class
  4. Response
  5. {
  6. public int $thread_id;
  7. public int $response_id;
  8. public string $name;
  9. public ?string $message;
  10. public DateTime $date;
  11. public string $image;
  12. public bool $held;
  13. public bool $deleted;
  14. public ?string $pass;
  15. public int $good;
  16. public int $bad;
  17. public Thread $thread;
  18. }