IDimensionUnit.cs 453 B

123456789101112131415161718
  1. using InABox.Core;
  2. using System;
  3. namespace Comal.Classes
  4. {
  5. public interface IDimensionUnit : IEntity
  6. {
  7. String Code { get; set; }
  8. String Description { get; set; }
  9. bool HasQuantity { get; set; }
  10. bool HasLength { get; set; }
  11. bool HasWidth { get; set; }
  12. bool HasHeight { get; set; }
  13. bool HasWeight { get; set; }
  14. String Formula { get; set; }
  15. String Format { get; set; }
  16. }
  17. }