2015-04-24 15:57:01 +02:00

16 lines
316 B
PHP

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