Files
safekat/ci4/app/Entities/Configuracion/FormaPagoEntity.php

16 lines
303 B
PHP
Executable File

<?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 = [];
}