namespace PowderCoating.Core.Enums; public enum PricingMode { /// Markup % applied to material costs only. Labor and equipment pass through at cost. MarkupOnMaterial = 0, /// Target margin % applied to total item cost (material + labor + equipment). MarginOnTotalCost = 1 }