go-cook/api/models/users.go

16 lines
187 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
}
2024-03-26 17:54:46 -07:00
type UserDto struct {
}