bst/webapp/mocha/core/InstanceKey.inc.php
2023-10-31 00:21:50 -04:00

19 lines
331 B
PHP

<?php
namespace Mocha\Core;
class InstanceKey
{
public $ClassIndex;
public $InstanceIndex;
public function __construct($class_id, $inst_id)
{
$this->ClassIndex = $class_id;
$this->InstanceIndex = $inst_id;
}
public function __toString()
{
return $this->ClassIndex . "$" . $this->InstanceIndex;
}
}