IQuoteCostSheet.cs 165 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IQuoteCostSheet : IEntity, ISequenceable
  5. {
  6. string Description { get; set; }
  7. }
  8. }