2015-06-02 14:19:05 +02:00

17 lines
395 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaUsergroup extends IcingaObject
{
protected $table = 'icinga_usergroup';
protected $defaultProperties = array(
'id' => null,
'object_name' => null,
'display_name' => null,
'object_type' => null,
'zone_id' => null,
);
}