Files
server/core/lib/Models/Tenant/TenantSecurity.php
2026-02-10 18:46:11 -05:00

23 lines
349 B
PHP

<?php
namespace KTXC\Models\Tenant;
use KTXF\Json\JsonSerializableObject;
/**
* Tenant Configuration
*/
class TenantSecurity extends JsonSerializableObject
{
protected string $code = '';
public function __construct()
{
$this->code = uniqid();
}
public function code(): string {
return $this->code;
}
}