dbmsv4/app/DTOs/MylogDTO.php
2025-11-21 13:10:03 +09:00

18 lines
314 B
PHP

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