Skip to content

Commit

Permalink
feat: update user rights
Browse files Browse the repository at this point in the history
  • Loading branch information
aleedhillon authored May 13, 2024
1 parent 514ca2c commit 3996dc8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Entities/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class User
protected $investor_password;
protected $agent;
protected $company;
protected $Rights;

/**
* @return mixed
Expand Down Expand Up @@ -250,4 +251,14 @@ public function getCompany()
{
return $this->company;
}

public function getRights()
{
return $this->Rights;
}

public function setRights($rights)
{
$this->Rights = $rights;
}
}

0 comments on commit 3996dc8

Please sign in to comment.