15 lines
213 B
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;
|
|
}
|
|
}
|
|
?>
|