source: src/main/java/finki/it/terapijamkbackend/spring/dto/AppointmentResponse.java

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 
1package finki.it.terapijamkbackend.spring.dto;
2
3import lombok.Getter;
4import lombok.Setter;
5import java.time.LocalDateTime;
6@Getter
7@Setter
8public class AppointmentResponse {
9private LocalDateTime localDateTime;
10
11 public AppointmentResponse(LocalDateTime localDateTime) {
12 this.localDateTime=localDateTime;
13 }
14}
Note: See TracBrowser for help on using the repository browser.