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

15 lines
300 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaTemplateChoiceHost extends IcingaTemplateChoice
{
protected $table = 'icinga_host_template_choice';
protected $objectTable = 'icinga_host';
protected $relations = array(
'required_template' => 'IcingaHost',
);
}