Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace PowderCoating.Core.Entities;
|
||||
|
||||
public class QuoteItemPrepService : BaseEntity
|
||||
{
|
||||
public int QuoteItemId { 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 QuoteItem QuoteItem { get; set; } = null!;
|
||||
public virtual PrepService PrepService { get; set; } = null!;
|
||||
public virtual CompanyBlastSetup? BlastSetup { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user