package domain import "time" type User struct { ID int64 FirstName string LastName string Email string PhoneNumber string Password []byte Role string Verified bool CreatedAt time.Time UpdatedAt time.Time }