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