Files
safekat/ci4/app/Entities/Wiki/WikiPageEntity.php
2025-02-25 18:41:59 +01:00

19 lines
276 B
PHP

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