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