| 1234567891011121314151617 | using System;namespace InABox.Core{    public interface IDimensionUnit : IEntity    {        String Code { get; set; }        String Description { get; set; }        bool HasQuantity { get; set; }        bool HasLength { get; set; }        bool HasWidth { get; set; }        bool HasHeight { get; set; }        bool HasWeight { get; set; }        String Formula { get; set; }        String Format { get; set; }    }}
 |