sName = $sName; $this->sDescription = $sDescription; $this->sType = $sType; } /** * @return string */ public function GetName(): string { return $this->sName; } /** * @param string $sName */ public function SetName(string $sName): void { $this->sName = $sName; } /** * @return string */ public function GetDescription(): string { return $this->sDescription; } /** * @param string $sDescription */ public function SetDescription(string $sDescription): void { $this->sDescription = $sDescription; } /** * @return string */ public function GetType(): string { return $this->sType; } /** * @param string $sType */ public function SetType(string $sType): void { $this->sType = $sType; } }