mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
festivo entity model
This commit is contained in:
14
ci4/app/Entities/Configuracion/FestivoEntity.php
Normal file
14
ci4/app/Entities/Configuracion/FestivoEntity.php
Normal 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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user