mirror of
https://github.com/stashapp/stash.git
synced 2026-02-08 08:21:32 +01:00
13 lines
164 B
Go
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
|
|
}
|