Changed DTO files to Dto because of checkstyle

This commit is contained in:
Merel Steenbergen
2019-03-17 18:23:18 +01:00
parent dd74a97c47
commit bfc9595d21
2 changed files with 8 additions and 8 deletions

View File

@@ -1,15 +1,15 @@
package greenify.common;
public class ActivityDTO {
public class ActivityDto {
private Long id;
private String name;
private String description;
private int score;
public ActivityDTO() {
public ActivityDto() {
}
public ActivityDTO(Long id, String name, String description, int score) {
public ActivityDto(Long id, String name, String description, int score) {
this.id = id;
this.name = name;
this.description = description;