quintodrome/domain/user.go

12 lines
143 B
Go
Raw Normal View History

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