mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-06 07:20:52 -05: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;
|
|
};
|
|
|
|
}
|