core/crm-core/internal/domain/contacts/contact.go
2025-12-27 14:32:00 -03:00

23 lines
348 B
Go

package contacts
import "time"
type Status string
const (
StatusActive Status = "active"
StatusArchived Status = "archived"
)
type Contact struct {
ID string
TenantID string
AccountID *string
Name string
Email *string
Phone *string
RoleTitle *string
Status Status
CreatedAt time.Time
UpdatedAt time.Time
}