blob: 4e0e5a290680831b62db962b15522d549b676673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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',
);
}
|