namespace PowderCoating.Core.Entities; public class QuoteItemPrepService : BaseEntity { public int QuoteItemId { get; set; } public int PrepServiceId { get; set; } public int EstimatedMinutes { get; set; } /// Which blast setup was selected when this sandblasting prep service was added. public int? BlastSetupId { get; set; } public virtual QuoteItem QuoteItem { get; set; } = null!; public virtual PrepService PrepService { get; set; } = null!; public virtual CompanyBlastSetup? BlastSetup { get; set; } }