stash/pkg/models/model_user.go
2026-02-04 14:56:49 +11:00

12 lines
147 B
Go

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