initial commit

This commit is contained in:
tracer 2022-09-21 15:52:13 +02:00
parent 1ae9434558
commit d5bdb1bade
1 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,61 @@
<?php
namespace App\Entity\KeyHelp;
/**
*
*/
class Target
{
private string $target;
private bool $isForwarding;
private ?string $forwardingType;
/**
* @return string
*/
public function getForwardingType(): string
{
return $this->forwardingType;
}
/**
* @param string|null $forwardingType
*/
public function setForwardingType(?string $forwardingType): void
{
$this->forwardingType = $forwardingType;
}
/**
* @return bool
*/
public function isForwarding(): bool
{
return $this->isForwarding;
}
/**
* @param bool $isForwarding
*/
public function setIsForwarding(bool $isForwarding): void
{
$this->isForwarding = $isForwarding;
}
/**
* @return string
*/
public function getTarget(): string
{
return $this->target;
}
/**
* @param string $target
*/
public function setTarget(string $target): void
{
$this->target = $target;
}
}