gofiber-study/model/dto/auth.go

7 lines
138 B
Go
Raw Normal View History

2022-10-06 17:23:22 +08:00
package dto
type Login struct {
Account string `json:"account" example:"root"`
Password string `json:"password" example:"12341234"`
}