19 lines
386 B
PHP
19 lines
386 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Objects;
|
||
|
|
||
|
class IcingaServiceAssignment extends IcingaObject
|
||
|
{
|
||
|
protected $table = 'icinga_service_assignment';
|
||
|
|
||
|
protected $defaultProperties = array(
|
||
|
'id' => null,
|
||
|
'service_id' => null,
|
||
|
'filter_string' => null,
|
||
|
);
|
||
|
|
||
|
protected $relations = array(
|
||
|
'service' => 'IcingaService',
|
||
|
);
|
||
|
}
|