mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-09 01:30:42 -04:00
13 lines
197 B
Text
13 lines
197 B
Text
#include "base/dynamicobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class Zone : DynamicObject
|
|
{
|
|
[config] String parent (ParentRaw);
|
|
[config] Array::Ptr endpoints (EndpointsRaw);
|
|
[config] bool global;
|
|
};
|
|
|
|
}
|