source: backend/src/main/java/mk/finki/roomreservation/model/ReservationDetails.java

Last change on this file was 09e02d7, checked in by Nikola Sarafimov <sarafimov.nikola12345@…>, 4 days ago

Final room reservation system implementation

  • Property mode set to 100644
File size: 291 bytes
Line 
1package mk.finki.roomreservation.model;
2
3public record ReservationDetails(
4 int reservationId,
5 String requesterName,
6 String roomCode,
7 String reservationDate,
8 String startTime,
9 String endTime,
10 String status,
11 String equipment
12) {}
Note: See TracBrowser for help on using the repository browser.