2025-06-04 23:45:25 +07:00

19 lines
287 B
Go

package entity
import "time"
type CustomerResolutionRequest struct {
ID *int64
Name string
Email string
PhoneNumber string
BirthDate time.Time
Password string
}
type CustomerCheckResponse struct {
Exists bool
Customer *Customer
Message string
}