source: backend/src/main/java/mk/finki/roomreservation/model/EquipmentOption.java@ 09e02d7

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

Final room reservation system implementation

  • Property mode set to 100644
File size: 148 bytes
Line 
1package mk.finki.roomreservation.model;
2
3public record EquipmentOption(
4 int equipmentId,
5 String name,
6 int stockQuantity
7) {}
Note: See TracBrowser for help on using the repository browser.