mirror of
https://github.com/stashapp/stash.git
synced 2026-02-07 16:05:47 +01:00
12 lines
147 B
Go
12 lines
147 B
Go
package models
|
|
|
|
type User struct {
|
|
Username string
|
|
Roles Roles
|
|
}
|
|
|
|
type UserInput struct {
|
|
Username string
|
|
Roles Roles
|
|
Password string
|
|
}
|