quintodrome/model/user.go

12 lines
142 B
Go
Raw Normal View History

2020-01-14 18:22:34 -09:00
package model
2020-01-14 12:11:27 -09:00
import "time"
type User struct {
ID string
Name string
Password string
IsAdmin bool
CreatedAt time.Time
}