editor-legacy/PHP/Common/Include/Objects/TenantQueryParameter.inc.php

15 lines
213 B
PHP

<?php
namespace Objectify\Objects;
class TenantQueryParameter
{
public $Name;
public $Value;
public function __construct($name, $value)
{
$this->Name = $name;
$this->Value = $value;
}
}
?>