summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaServiceAssignment.php
blob: 9910f7cb28f197b7b780f7288445e148b8e8839a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Icinga\Module\Director\Objects;

class IcingaServiceAssignment extends IcingaObject
{
    protected $table = 'icinga_service_assignment';

    protected $keyName = 'id';

    protected $defaultProperties = array(
        'id'            => null,
        'service_id'    => null,
        'filter_string' => null,
    );

    protected $relations = array(
        'service' => 'IcingaService',
    );
}