source: src/main/java/finki/it/terapijamkbackend/spring/dto/AppointmentInfo.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: 654 bytes
Line 
1package finki.it.terapijamkbackend.spring.dto;
2
3import finki.it.terapijamkbackend.spring.entities.AppointmentInfoStatus;
4import jakarta.persistence.Embeddable;
5import lombok.Getter;
6import lombok.Setter;
7import java.time.LocalDateTime;
8
9@Getter
10@Setter
11@Embeddable
12public class AppointmentInfo {
13 private LocalDateTime dateTime;
14 private String note;
15 private AppointmentInfoStatus status;
16
17 public AppointmentInfo() {
18 }
19
20 public AppointmentInfo(LocalDateTime dateTime, String note,AppointmentInfoStatus appointmentInfoStatus) {
21 this.dateTime = dateTime;
22 this.note = note;
23 status=appointmentInfoStatus;
24 }
25}
Note: See TracBrowser for help on using the repository browser.