diff --git a/pkg/contact/contact.go b/pkg/contact/contact.go new file mode 100644 index 0000000..1cea684 --- /dev/null +++ b/pkg/contact/contact.go @@ -0,0 +1,6 @@ +package contact + +type Contact struct { + PhoneNumber string `json:"phone_number,omitempty"` + UserId string `json:"user_id,omitempty"` +}