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

20 lines
417 B
Go

package deals
import "time"
type Deal struct {
ID string
TenantID string
Title string
AccountID *string
ContactID *string
PipelineID string
StageID string
Value Money
Status Status
Source *string
ExpectedClose *time.Time
ClosedAt *time.Time
CreatedAt time.Time
UpdatedAt time.Time
}