IQuoteDesignSection.cs 154 B

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