hostname-service/models/user.go

11 lines
254 B
Go
Raw Normal View History

2024-01-17 18:05:55 +01:00
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
}