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

21 lines
435 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Objects;
2019-09-11 22:26:23 +02:00
class IcingaServiceSetAssignment extends IcingaObject
{
protected $table = 'icinga_service_set_assignment';
protected $keyName = 'id';
protected $defaultProperties = array(
'id' => null,
'service_set_id' => null,
'filter_string' => null,
);
protected $relations = array(
'service_set' => 'IcingaServiceSet',
);
}