namespace PowderCoating.Core.Entities;
///
/// Company-specific preparation service lookup table.
/// Stores common prep services like "Sandblasting", "Chemical Stripping", "Hand Sanding", etc.
///
public class PrepService : BaseEntity
{
///
/// Name of the preparation service (e.g., "Sandblasting", "Chemical Stripping").
///
public string ServiceName { get; set; } = string.Empty;
///
/// Optional detailed description of the service.
///
public string? Description { get; set; }
///
/// Display order for sorting services in lists (lower numbers appear first).
///
public int DisplayOrder { get; set; }
///
/// Whether this service is currently active and available for selection.
///
public bool IsActive { get; set; } = true;
///
/// 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.
///
public bool RequiresBlastSetup { get; set; }
}