package models
// User Model
// @Description User account information
// @Description with user id and username
type User struct {
ID int // Database ID for the User
Username string // Username
Password string // hashed password
}