Files
iTop/sources/Forms/Block/FormInput.php
2025-10-23 12:11:02 +02:00

36 lines
514 B
PHP

<?php
namespace Combodo\iTop\Forms\Block;
class FormInput
{
private string $sName;
private string $sType;
public function __construct(string $sName, string $sType)
{
$this->sName = $sName;
$this->sType = $sName;
}
public function GetName(): string
{
return $this->sName;
}
public function SetName(string $sName): void
{
$this->sName = $sName;
}
public function GetType(): string
{
return $this->sType;
}
public function SetType(string $sType): void
{
$this->sType = $sType;
}
}