20 lines
388 B
PHP
20 lines
388 B
PHP
<?php
|
|
|
|
namespace App\DTOs;
|
|
|
|
class BoardDTO extends CommonDTO
|
|
{
|
|
public ?int $uid = null;
|
|
public ?int $user_uid = null;
|
|
public ?int $worker_uid = null;
|
|
public string $category = '';
|
|
public string $title = '';
|
|
public string $status = STATUS['AVAILABLE'];
|
|
public string $content = '';
|
|
|
|
public function __construct(array $datas = [])
|
|
{
|
|
parent::__construct($datas);
|
|
}
|
|
}
|