icingaweb2-module-director/library/Director/Objects/IcingaHostGroupAssignment.php

21 lines
424 B
PHP
Raw Normal View History

2016-06-08 16:45:46 +02:00
<?php
namespace Icinga\Module\Director\Objects;
class IcingaHostGroupAssignment extends IcingaObject
{
protected $table = 'icinga_hostgroup_assignment';
protected $keyName = 'id';
protected $defaultProperties = array(
'id' => null,
'service_id' => null,
'filter_string' => null,
);
protected $relations = array(
'service' => 'IcingaHostGroup',
);
}