IDimensionUnit.cs 432 B

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