PAN-16 finished

This commit is contained in:
-
2019-03-14 16:58:17 -06:00
parent 2dda30753e
commit 139dc943c3
16 changed files with 275 additions and 327 deletions
@@ -0,0 +1,19 @@
package edu.msudenver.tsp.website.forms;
public class Theorem {
private String theoremName ;
public String getTheoremName() {
return theoremName;
}
public void setTheoremName(String theoremName) {
this.theoremName = theoremName;
}
}