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"` }