IQuoteTakeoff.cs 286 B

12345678910111213
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IQuoteTakeoff : IEntity/* , IDimensioned */
  5. {
  6. string Description { get; set; }
  7. QuoteTakeOffDimensions Dimensions { get; set; }
  8. QuoteTakeOffFactorLink Factor { get; set; }
  9. }
  10. }