| 1234567891011121314151617181920 | using System;using InABox.Core;namespace Comal.Classes{    public class QuoteTakeOffUnitLink : DimensionUnitLink<QuoteTakeOffUnit>    {        [Obsolete("You should always provide a Linked Entity", true)]        public QuoteTakeOffUnitLink()        {        }        public QuoteTakeOffUnitLink(Func<Entity>? entity) : base(entity)        {        }        [LookupEditor(typeof(QuoteTakeOffUnit), nameof(Code), nameof(Description), nameof(HasQuantity), nameof(HasLength), nameof(HasWidth), nameof(HasHeight), nameof(HasWeight), nameof(Formula), nameof(Format))]        public override Guid ID { get; set; }    }}
 |