7 lines
135 B
Go
7 lines
135 B
Go
package contact
|
|
|
|
type Contact struct {
|
|
PhoneNumber string `json:"phone_number,omitempty"`
|
|
UserId string `json:"user_id,omitempty"`
|
|
}
|