. */ namespace SP\DataModel; defined('APP_ROOT') || die(); /** * Class ProfileBaseData * * @package SP\DataModel */ class ProfileBaseData extends DataModelBase implements DataModelInterface { /** * @var int */ public $userprofile_id = 0; /** * @var string */ public $userprofile_name = ''; /** * @var ProfileData */ public $userprofile_profile; /** * @return string */ public function getUserprofileName() { return $this->userprofile_name; } /** * @param string $userprofile_name */ public function setUserprofileName($userprofile_name) { $this->userprofile_name = $userprofile_name; } /** * @return int */ public function getUserprofileId() { return $this->userprofile_id; } /** * @param int $userprofile_id */ public function setUserprofileId($userprofile_id) { $this->userprofile_id = $userprofile_id; } /** * @return ProfileData */ public function getUserprofileProfile() { return $this->userprofile_profile; } /** * @param ProfileData $userprofile_profile */ public function setUserprofileProfile($userprofile_profile) { $this->userprofile_profile = $userprofile_profile; } /** * @return int */ public function getId() { return $this->userprofile_id; } /** * @return string */ public function getName() { return $this->userprofile_name; } }