mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
11 lines
281 B
Go
Executable File
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"`
|
|
}
|