Files
safekat/ci4/app/Entities/Configuracion/FestivoEntity.php
2025-04-27 19:01:23 +02:00

15 lines
227 B
PHP

<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity\Entity;
class FestivoEntity extends Entity
{
protected $attributes = [
"id" => null,
"date" => null,
];
protected $casts = [];
}