using InABox.Core; namespace Comal.Classes { public enum QuoteCostSheetItemLineType { Header, Costing, Unused } public interface IQuoteCostSheetItem : IEntity, ISequenceable { QuoteCostSheetItemLineType Type { get; set; } } }