Files
safekat/ci4/app/Entities/Configuracion/FormaPagoEntity.php
2023-07-12 12:35:31 +02:00

16 lines
303 B
PHP

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