Added getter for 'inProgress' field

This commit is contained in:
Tim Ysewyn
2019-08-07 23:59:26 +02:00
parent c2ba0ecb90
commit 981463dbf7
3 changed files with 6 additions and 2 deletions

View File

@@ -352,6 +352,10 @@ public class Contract {
this.ignored = ignored;
}
public boolean getInProgress() {
return this.inProgress;
}
public void setInProgress(boolean inProgress) {
this.inProgress = inProgress;
}