Closes #8 Reviewed-on: phoenix/textsender-models#9 Co-authored-by: phoenix <kundeng00@pm.me> Co-committed-by: phoenix <kundeng00@pm.me>
12 lines
229 B
Go
12 lines
229 B
Go
package contact
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Contact struct {
|
|
Id uuid.UUID `json:"id,omitempty"`
|
|
PhoneNumber string `json:"phone_number,omitempty"`
|
|
UserId uuid.UUID `json:"user_id,omitempty"`
|
|
}
|