2025-03-15 15:51:18 +08:00

18 lines
267 B
Go

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