Files
schedtxt_models/tx0/contact/contact.go
T
phoenixandphoenix 14ddd3bc9c tsk-8: Renamed pkg (#9)
Closes #8

Reviewed-on: phoenix/textsender-models#9
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-11-27 00:55:20 +00:00

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"`
}