12 lines
160 B
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
|
|
}
|