mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-28 20:29:00 +02:00
16 lines
354 B
PHP
16 lines
354 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
class IcingaHostgroup extends IcingaObject
|
|
{
|
|
protected $table = 'icinga_hostgroup';
|
|
|
|
protected $defaultProperties = array(
|
|
'id' => null,
|
|
'object_name' => null,
|
|
'display_name' => null,
|
|
'object_type' => null,
|
|
);
|
|
}
|