source: backend/src/main/java/mk/finki/roomreservation/model/UserOption.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: 183 bytes
Line 
1package mk.finki.roomreservation.model;
2
3public record UserOption(
4 int userId,
5 String username,
6 String email,
7 String fullName,
8 String role
9) {}
Note: See TracBrowser for help on using the repository browser.