mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-15 08:41:02 +00:00
19 lines
311 B
Go
19 lines
311 B
Go
package rbac
|
|
|
|
import "google.golang.org/genproto/googleapis/type/datetime"
|
|
|
|
type FBUserStatus int32
|
|
|
|
const (
|
|
Active FBUserStatus = 0
|
|
Disabled
|
|
Locked
|
|
)
|
|
|
|
type FBUser struct {
|
|
Username string
|
|
Email string
|
|
Created datetime.DateTime
|
|
LastActivity datetime.DateTime
|
|
Status FBUserStatus
|
|
}
|