user.go 109 B

123456
  1. package dto
  2. type LoginForm struct {
  3. Username string `form:"username"`
  4. Password string `form:"password"`
  5. }