mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
550 B
PHP
Executable File
27 lines
550 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Entities\Mensajeria;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class ParticipanteEntity extends Entity
|
|
{
|
|
protected $attributes = [
|
|
'id' => null,
|
|
'conversacion_id' => null,
|
|
'usuario_id' => null,
|
|
'cliente_id' => null,
|
|
'email' => null,
|
|
'last_read' => null,
|
|
'created_at' => null,
|
|
'updated_at' => null,
|
|
'deleted_at' => null,
|
|
];
|
|
|
|
protected $casts = [
|
|
"conversacion_id" => "?int",
|
|
"usuario_id" => "?int",
|
|
"cliente_id" => "?int"
|
|
];
|
|
}
|