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