22 lines
255 B
Go
22 lines
255 B
Go
package store
|
|
|
|
type UserIdentifiers struct {
|
|
ID int64
|
|
UID string
|
|
}
|
|
|
|
type BasicRole struct {
|
|
Role string
|
|
IsAdmin bool
|
|
}
|
|
|
|
type BasicRoleQuery struct {
|
|
UserID int64
|
|
OrgID int64
|
|
}
|
|
|
|
type UserIdentifierQuery struct {
|
|
UserID int64
|
|
UserUID string
|
|
}
|