mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
trabajando en user y groups con el nuevo formato
This commit is contained in:
18
ci4/app/Entities/Usuarios/UserGroupEntity.php
Normal file
18
ci4/app/Entities/Usuarios/UserGroupEntity.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace App\Entities\Usuarios;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class UserGroupEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id_group" => null,
|
||||
"title" => null,
|
||||
"dashboard" => null,
|
||||
"rules" => null,
|
||||
"token" => null,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
];
|
||||
protected $casts = [];
|
||||
}
|
||||
Reference in New Issue
Block a user