Files
safekat/ci4/app/Entities/Soporte/TicketRespuestaEntity.php

21 lines
393 B
PHP

<?php
namespace App\Entities\Soporte;
use CodeIgniter\Entity\Entity;
class TicketRespuestaEntity extends Entity
{
protected $attributes = [
'id' => null,
'ticket_id' => null,
'usuario_id' => null,
'mensaje' => null,
'created_at' => null,
'updated_at' => null,
];
protected $dates = ['created_at', 'updated_at'];
}