16 lines
562 B
C#
16 lines
562 B
C#
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; }
|
|
}
|