Files
openlan/pkg/schema/user.go
2022-07-29 23:38:54 +08:00

11 lines
281 B
Go
Executable File

package schema
type User struct {
Alias string `json:"alias,omitempty"`
Role string `json:"role,omitempty"` // admin, guest or other
Name string `json:"name"`
Password string `json:"password"`
Network string `json:"network"`
Lease string `json:"leaseTime"`
}