2024-01-17 18:05:55 +01:00

10 lines
264 B
Go

package models
// User Credentials Model
// @Description User account information used in the login process
// @Description with Username and password
type LoginCredentials struct {
Username string `json:"username"`
Password string `json:"password"`
}