linstrom/storage-new/models/UserToRole.go
mstar 67b507f4bd
Some checks are pending
/ test (push) Waiting to run
Describe all types for the new storage system
2025-03-27 10:45:57 +01:00

11 lines
259 B
Go

package models
// A link of one account to one role
// There may be multiple of these links per user and per role
// But a role may only be linked at most once to the same user
type UserToRole struct {
User User
UserId string
Role Role
RoleId uint
}