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

15 lines
312 B
PHP
Raw Permalink Normal View History

<?php
namespace Icinga\Module\Director\Objects;
2017-06-26 18:20:40 -04:00
class IcingaTemplateChoiceService extends IcingaTemplateChoice
{
protected $table = 'icinga_service_template_choice';
protected $objectTable = 'icinga_service';
protected $relations = array(
'required_template' => 'IcingaService',
);
}