Some more work done on the feature object

This commit is contained in:
Merel Steenbergen
2019-03-14 15:08:49 +01:00
parent 82d3f08e2d
commit 454a0ec1a3
4 changed files with 58 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ public class ActivityDTO {
public ActivityDTO(Long id, String name, String description, int score) {
this.id = id;
this.name = name;
this.description=description;
this.description = description;
this.score= score;
}