CreateCollaborationCommentDTO.php
2 weeks ago
DeleteCollaborationCommentDTO.php
2 weeks ago
ResolveCollaborationCommentDTO.php
2 weeks ago
ResolveCollaborationCommentDTO.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\DTO\CollaborationComment; |
| 4 | |
| 5 | use Kirki\Framework\DTO; |
| 6 | |
| 7 | class ResolveCollaborationCommentDTO extends DTO |
| 8 | { |
| 9 | /** @var int */ |
| 10 | public $id; |
| 11 | |
| 12 | /** @var int */ |
| 13 | public $post_id; |
| 14 | |
| 15 | /** @var int */ |
| 16 | public $status = 1; |
| 17 | |
| 18 | /** @var string */ |
| 19 | public $session_id = ''; |
| 20 | |
| 21 | /** @var int */ |
| 22 | public $user_id; |
| 23 | } |
| 24 |