admin-dashboard-backend/modules/structs/users.go

16 lines
254 B
Go

package structs
// swagger:model UsersResponse
type UsersResponse struct {
RoleId string
Users []AllUsers
Roles []UserRoleShortInfo
}
type UserRoleShortInfo struct {
Id string
Master bool
DisplayName string
SortingOrder int
}