phast/app/lib/phast/WebPageVariable.inc.php
2023-11-01 23:10:09 -04:00

17 lines
262 B
PHP

<?php
namespace Phast;
class WebPageVariable
{
public $Name;
public $Value;
public $IsSet;
public function __construct($name, $value = null, $isSet = false)
{
$this->Name = $name;
$this->Value = $value;
$this->IsSet = $isSet;
}
}
?>