Skip to content
Snippets Groups Projects
Commit eedf95f7 authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

add field name to algorithm model

parent 8a3ea320
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@ public class Algorithm {
private String label;
private String name;
private List type;
private String environment;
......@@ -52,6 +54,14 @@ public class Algorithm {
this.label = label;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getType() {
return type;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment