Files
safekat/ci4/app/Entities/Wiki/WikiPageEntity.php
2025-04-21 12:55:45 +02:00

19 lines
276 B
PHP
Executable File

<?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",
];
}