created the initial model

This commit is contained in:
James Tombleson 2024-03-21 22:41:05 -07:00
parent 68ab718d68
commit 7cf3e7943c
1 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,11 @@
package models
import "time"
type UserModel struct {
Name string
Hash string
}
Id int
Name string
Hash string
CreatedAt time.Time
LastUpdated time.Time
}