Changeset 84d0fbb for trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/UserDto.java
- Timestamp:
- 12/19/21 19:39:00 (3 years ago)
- Branches:
- master
- Children:
- bdd6491
- Parents:
- 1ad8e64
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/UserDto.java
r1ad8e64 r84d0fbb 20 20 private Date update_At; 21 21 22 public UserDto(String username, String fullName, String password, String confirmPassword , Date create_At, Date update_At) {22 public UserDto(String username, String fullName, String password, String confirmPassword) { 23 23 this.username = username; 24 24 this.fullName = fullName; 25 25 this.password = password; 26 26 this.confirmPassword = confirmPassword; 27 this.create_At = create_At; 28 this.update_At = update_At; 27 29 28 } 30 29 }
Note:
See TracChangeset
for help on using the changeset viewer.