phast/lib/phast/server/Configuration/Property.inc.php

23 lines
332 B
PHP

<?php
namespace Phast\Configuration;
class Property
{
/**
* The name of this Property.
* @var string
*/
public $ID;
/**
* The value of this Property.
* @var string
*/
public $Value;
public function __construct($id = null, $value = null)
{
$this->ID = $id;
$this->Value = $value;
}
}
?>