18 lines
424 B
Go
18 lines
424 B
Go
package _20231017112246
|
|
|
|
import (
|
|
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
|
|
)
|
|
|
|
type User struct {
|
|
models.ModelBase
|
|
FullName string `json:"full_name"`
|
|
Username string `json:"username" gorm:"unique"`
|
|
Password string `json:"password"`
|
|
|
|
//additional optional metadata that Fasten stores with users
|
|
Picture string `json:"picture"`
|
|
Email string `json:"email"`
|
|
//Roles datatypes.JSON `json:"roles"`
|
|
}
|