summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole3/frontend/src/app/model/command.ts
blob: 5fc4473455cf396f0a2771ff9fdf8f0b94316f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Resource } from 'globunet-angular/core/models/api/resource';

export class Execution {
  script = '';
  clients = '';
  type = '';
  sendConfig =  false;
}

export class Command extends Resource {
  public title = '';
  public script = '';
  public parameters = false;

}