festivo entity model

This commit is contained in:
amazuecos
2025-04-27 19:01:23 +02:00
parent dd20f2a20e
commit e464652fe2
2 changed files with 146 additions and 0 deletions

View File

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