mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
20 lines
418 B
PHP
20 lines
418 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
class IcingaServiceAssignment extends IcingaObject
|
|
{
|
|
protected $table = 'icinga_service_assignment';
|
|
|
|
protected $keyName = 'id';
|
|
|
|
protected $defaultProperties = array(
|
|
'id' => null,
|
|
'service_id' => null,
|
|
'filter_string' => null,
|
|
);
|
|
|
|
protected $relations = array(
|
|
'service' => 'IcingaService',
|
|
);
|
|
}
|