mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
15 lines
227 B
PHP
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 = [];
|
|
}
|