mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
7 lines
213 B
Go
7 lines
213 B
Go
package request
|
|
|
|
type UserLogin struct {
|
|
Username string `json:"username" form:"username" validate:"required,min=3,max=255"`
|
|
Password string `json:"password" form:"password" validate:"required,min=6,max=255"`
|
|
}
|