このリポジトリは2026-03-14にアーカイブされてゐます. ファイルの閲覧とクローンは可能ですが,課題の作成,Pull リクエスト,プッシュはできません.
ファイル
kekec_bbs/dtos/response.php
T
2024-02-07 03:42:00 +09:00

24 行
387 B
PHP

<?php
namespace Dto;
class
Response
{
public int $thread_id;
public int $response_id;
public string $name;
public ?string $message;
public DateTime $date;
public string $image;
public bool $held;
public bool $deleted;
public ?string $pass;
public int $good;
public int $bad;
public Thread $thread;
}