2015-06-29 10:20:15 +02:00

18 lines
394 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaHostGroup extends IcingaObject
{
protected $table = 'icinga_hostgroup';
protected $supportsImports = true;
protected $defaultProperties = array(
'id' => null,
'object_name' => null,
'display_name' => null,
'object_type' => null,
);
}