diff --git a/hesabixCore/src/Entity/Permission.php b/hesabixCore/src/Entity/Permission.php index d906fd0..d135008 100644 --- a/hesabixCore/src/Entity/Permission.php +++ b/hesabixCore/src/Entity/Permission.php @@ -120,6 +120,9 @@ class Permission #[ORM\Column(nullable: true)] private ?bool $plugRepservice = null; + #[ORM\Column(nullable: true)] + private ?bool $Transfer = null; + public function getId(): ?int { return $this->id; @@ -544,4 +547,16 @@ class Permission return $this; } + + public function isTransfer(): ?bool + { + return $this->Transfer; + } + + public function setTransfer(?bool $Transfer): static + { + $this->Transfer = $Transfer; + + return $this; + } }