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

12 lines
171 B
Go

package pipelines
import "time"
type Pipeline struct {
ID string
TenantID string
Name string
IsDefault bool
CreatedAt time.Time
UpdatedAt time.Time
}