mirror of https://github.com/Icinga/icinga2.git
13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
|
#include "base/dynamicobject.h"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class Script : DynamicObject
|
||
|
{
|
||
|
[config] String language;
|
||
|
[config] String "code";
|
||
|
};
|
||
|
|
||
|
}
|