2015-06-01 17:26:09 +02:00

19 lines
475 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaEndpoint extends IcingaObject
{
protected $table = 'icinga_endpoint';
protected $defaultProperties = array(
'id' => null,
'zone_id' => null,
'object_name' => null,
'address' => null,
'port' => null,
'log_duration' => null,
'object_type' => null,
);
}