Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
@@ -0,0 +1,10 @@
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
}