mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-25 00:02:17 +08:00
7 lines
138 B
Go
7 lines
138 B
Go
package dto
|
|
|
|
type Login struct {
|
|
Account string `json:"account" example:"root"`
|
|
Password string `json:"password" example:"12341234"`
|
|
}
|