Files
safekat/ci4/app/Entities/Wiki/WikiPageEntity.php
amazuecos f270b6dee8 wiki
2025-02-22 20:56:06 +01:00

16 lines
239 B
PHP

<?php
namespace App\Entities\Wiki;
use CodeIgniter\Entity\Entity;
class WikiPageEntity extends Entity
{
protected $attributes = [
"section_id" => null,
];
protected $casts = [
"section_id" => "int",
];
}