go-cook/api/models/users.go

12 lines
160 B
Go

package models
import "time"
type UserModel struct {
Id int
Name string
Hash string
CreatedAt time.Time
LastUpdated time.Time
}