2015-07-03 14:00:40 +02:00

21 lines
403 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\Data\Db\DbObject;
class DirectorDatalist extends DbObject
{
protected $table = 'director_datalist';
protected $keyName = 'id';
protected $autoincKeyName = 'id';
protected $defaultProperties = array(
'id' => null,
'list_name' => null,
'owner' => null
);
}