Files

16 lines
249 B
Go
Raw Permalink Normal View History

package domain
import "time"
type User struct {
ID int64
Email *string
Phone string
PasswordHash string
Name *string
AvatarURL *string
Status string
CreatedAt time.Time
UpdatedAt time.Time
}