mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-24 15:52:15 +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"`
|
||
|
}
|