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

18 lines
291 B
PHP

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