|
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:
329 bytes
|
| Line | |
|---|
| 1 | package mk.finki.roomreservation.model;
|
|---|
| 2 |
|
|---|
| 3 | public record PendingReservation(
|
|---|
| 4 | int reservationId,
|
|---|
| 5 | String requesterName,
|
|---|
| 6 | String reservationDate,
|
|---|
| 7 | String startTime,
|
|---|
| 8 | String endTime,
|
|---|
| 9 | String roomCode,
|
|---|
| 10 | String buildingName,
|
|---|
| 11 | String status,
|
|---|
| 12 | String requestedEquipment
|
|---|
| 13 | ) {} |
|---|
Note:
See
TracBrowser
for help on using the repository browser.