mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
10 lines
219 B
Go
10 lines
219 B
Go
|
package model
|
||
|
|
||
|
// User represents our User model.
|
||
|
type User struct {
|
||
|
ID string `json:"id"`
|
||
|
Username string `json:"username"`
|
||
|
HashedPassword []byte `json:"-"`
|
||
|
Roles []Role `json:"roles"`
|
||
|
}
|