summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/model/command.ts
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole3/frontend/src/app/model/command.ts')
-rw-r--r--admin/WebConsole3/frontend/src/app/model/command.ts22
1 files changed, 14 insertions, 8 deletions
diff --git a/admin/WebConsole3/frontend/src/app/model/command.ts b/admin/WebConsole3/frontend/src/app/model/command.ts
index 2f3639ba..2c5697aa 100644
--- a/admin/WebConsole3/frontend/src/app/model/command.ts
+++ b/admin/WebConsole3/frontend/src/app/model/command.ts
@@ -1,8 +1,14 @@
-import { Resource } from 'globunet-angular/core/models/api/resource';
-
-export class Command extends Resource {
- public title = '';
- public script = '';
- public parameters = false;
-
-}
+import { Resource } from 'globunet-angular/core/models/api/resource';
+
+export class Excecution {
+ script = '';
+ clients = '';
+ type = '';
+}
+
+export class Command extends Resource {
+ public title = '';
+ public script = '';
+ public parameters = false;
+
+}