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,15 @@
namespace PowderCoating.Core.Entities;
public class JobItemPrepService : BaseEntity
{
public int JobItemId { get; set; }
public int PrepServiceId { get; set; }
public int EstimatedMinutes { get; set; }
/// <summary>Which blast setup was selected when this sandblasting prep service was added.</summary>
public int? BlastSetupId { get; set; }
public virtual JobItem JobItem { get; set; } = null!;
public virtual PrepService PrepService { get; set; } = null!;
public virtual CompanyBlastSetup? BlastSetup { get; set; }
}