Files
safekat/ci4/app/Entities/Configuracion/TareaMaquinaEntity.php
2024-12-18 09:30:21 +01:00

21 lines
363 B
PHP

<?php
namespace App\Entities\Tarifas\Maquinas;
use CodeIgniter\Entity\Entity;
class TareaMaquinaEntity extends Entity
{
protected $attributes = [
"id" => null,
"name" => null,
"description" => null,
];
protected $casts = [
"id" => "integer",
"name" => "string",
"description" => "?string",
];
}