All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.core.model.task.model.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
export class Task {

  constructor(
    public identifier: string,
    public inputs: Array = [],
    public target: boolean
  ) { }

}

export class InputTask {

    constructor(
      public name: string,
      public type: string,
    ) { }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy