Files
safekat/ci4/app/Entities/Tarifas/Maquinas/TareaMaquinaEntity.php
2025-04-21 12:55:45 +02:00

21 lines
363 B
PHP
Executable File

<?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",
];
}