16 lines
184 B
PHP
16 lines
184 B
PHP
<?php
|
|
|
|
namespace Dto;
|
|
|
|
|
|
class
|
|
Thread
|
|
{
|
|
public int $id;
|
|
public string $title;
|
|
public ?string $explain;
|
|
public ?DateTime $latest;
|
|
public bool $deleted;
|
|
}
|
|
|