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