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.
|
- <?php
-
- namespace Dto;
-
-
- class
- Response
- {
- public int $thread_id;
- public int $response_id;
- public string $name;
- public ?string $message;
- public DateTime $date;
- public string $image;
- public bool $held;
- public bool $deleted;
- public ?string $pass;
- public int $good;
- public int $bad;
-
- public Thread $thread;
- }
|