go-cook/api/models/users.go

12 lines
160 B
Go
Raw Normal View History

package models
2024-03-21 22:41:05 -07:00
import "time"
type UserModel struct {
2024-03-21 22:41:05 -07:00
Id int
Name string
Hash string
CreatedAt time.Time
LastUpdated time.Time
}