mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
14 lines
182 B
PHP
14 lines
182 B
PHP
|
<?php
|
||
|
|
||
|
namespace SuiteCRM\Core\Modules\Users\Entity;
|
||
|
|
||
|
use SuiteCRM\Core\Module\Controller as SuiteController;
|
||
|
|
||
|
class UserProfile
|
||
|
{
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
private $id;
|
||
|
}
|