stash/pkg/models/model_user.go
2026-02-04 16:43:20 +11:00

13 lines
164 B
Go

package models
type User struct {
Username string
Roles Roles
ApiKey string
}
type UserInput struct {
Username string
Roles Roles
Password string
}