mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-21 00:37:43 +02:00
14 lines
197 B
Plaintext
14 lines
197 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class Zone : DynamicObject
|
|
{
|
|
[config] String parent (ParentRaw);
|
|
[config] Array::Ptr endpoints (EndpointsRaw);
|
|
[config] bool global;
|
|
};
|
|
|
|
}
|