Last change
on this file was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
442 bytes
|
Line | |
---|
1 | package finki.it.terapijamkbackend.spring.dto;
|
---|
2 |
|
---|
3 | import finki.it.terapijamkbackend.spring.entities.Appointment;
|
---|
4 | import lombok.Getter;
|
---|
5 | import lombok.Setter;
|
---|
6 |
|
---|
7 | @Getter
|
---|
8 | @Setter
|
---|
9 | public class AppointmentUpdateResponse {
|
---|
10 | private Appointment appointment;
|
---|
11 | private String username;
|
---|
12 | public AppointmentUpdateResponse(Appointment appointment, String username) {
|
---|
13 | this.appointment = appointment;
|
---|
14 | this.username = username;
|
---|
15 | }
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.