GroupResponse.java

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

  2. /**
  3.  * GroupResponse is a record class representing a response to a group request.
  4.  * @param groupId the id of the group
  5.  * @param linkCode the link code of the group
  6.  */
  7. public record GroupResponse(long groupId, String linkCode) {
  8. }