UserAuthorityInfo.java

  1. package ntnu.idatt2016.v233.SmartMat.dto.response.group;

  2. /**
  3.  * UserAuthorityInfo is a record class representing a response to a group request.
  4.  * @param username the username of the user
  5.  * @param authority the authority of the user
  6.  */
  7. public record UserAuthorityInfo(String username, String authority) {}