18 lines
305 B
PHP
18 lines
305 B
PHP
<?php
|
|
|
|
namespace App\DTOs;
|
|
|
|
class MylogDTO extends CommonDTO
|
|
{
|
|
public ?int $uid = null;
|
|
public ?int $user_uid = null;
|
|
public string $title = '';
|
|
public string $content = '';
|
|
public string $status = '';
|
|
|
|
public function __construct(array $datas = [])
|
|
{
|
|
parent::__construct($datas);
|
|
}
|
|
}
|