16 lines
187 B
Go
16 lines
187 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type UserModel struct {
|
|
Id int
|
|
Name string
|
|
Hash string
|
|
CreatedAt time.Time
|
|
LastUpdated time.Time
|
|
}
|
|
|
|
type UserDto struct {
|
|
|
|
}
|