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