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

19 lines
435 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Objects;
class IcingaUserGroup extends IcingaObject
{
protected $table = 'icinga_usergroup';
2015-06-29 11:02:30 +02:00
protected $supportsImports = true;
protected $defaultProperties = array(
'id' => null,
'object_name' => null,
'display_name' => null,
'object_type' => null,
'zone_id' => null,
);
}