add param dialog to app

This commit is contained in:
afischerdev 2023-05-04 11:19:07 +02:00
parent cdda6ee32c
commit 3976750f75
11 changed files with 789 additions and 96 deletions

View file

@ -0,0 +1,14 @@
package btools.routingapp;
import java.io.Serializable;
public class RoutingParam implements Serializable {
public String name;
public String description;
public String type;
public String value;
public String toString() {
return "RoutingParam " + name + " = " + value +" type: " + type + " txt: " + description;
}
}