35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
namespace PowderCoating.Core.Entities;
|
|
|
|
/// <summary>
|
|
/// Company-specific preparation service lookup table.
|
|
/// Stores common prep services like "Sandblasting", "Chemical Stripping", "Hand Sanding", etc.
|
|
/// </summary>
|
|
public class PrepService : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Name of the preparation service (e.g., "Sandblasting", "Chemical Stripping").
|
|
/// </summary>
|
|
public string ServiceName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Optional detailed description of the service.
|
|
/// </summary>
|
|
public string? Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Display order for sorting services in lists (lower numbers appear first).
|
|
/// </summary>
|
|
public int DisplayOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether this service is currently active and available for selection.
|
|
/// </summary>
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// When true, the item wizard shows a blast-setup selector for this prep service so the
|
|
/// correct throughput rate is used to calculate estimated minutes.
|
|
/// </summary>
|
|
public bool RequiresBlastSetup { get; set; }
|
|
}
|