1
0
Files
yel-dspace-angular/src/app/process-page/processes/process-parameter.model.ts

15 lines
222 B
TypeScript

/**
* A parameter used for running a process
*/
export class ProcessParameter {
/**
* The name of the parameter Eg. '-d', '-f' etc.
*/
name: string;
/**
* The value of the parameter
*/
value: any;
}