mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
18 lines
301 B
PHP
Executable File
18 lines
301 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Usuarios;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class GroupsUsersEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"user_id" => null,
|
|
"group" => null,
|
|
"created_at" => null
|
|
];
|
|
protected $casts = [
|
|
|
|
];
|
|
}
|