1 package com.supwisdom.institute.backend.base.api.vo.response;
8 import com.supwisdom.institute.backend.base.domain.entity.Role;
9 import com.supwisdom.institute.backend.common.framework.vo.response.data.IApiResponseData;
11 public class AuthnAccountRolesResponseData implements IApiResponseData {
16 private static final long serialVersionUID = -6588284546370817275L;
20 public List<Role> roles;
23 public static AuthnAccountRolesResponseData of(List<Role> roles) {
24 AuthnAccountRolesResponseData data = new AuthnAccountRolesResponseData();