11 lines
254 B
Go
11 lines
254 B
Go
|
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
|
||
|
}
|