authenticationInput.go 159 B

123456
  1. package model
  2. type AuthenticationInput struct {
  3. Username string `json:"username" binding:"required"`
  4. Password string `json:"password" binding:"required"`
  5. }