using System; using InABox.Core; namespace Comal.Classes { public class QuoteTakeOffUnitLink : DimensionUnitLink { [Obsolete("You should always provide a Linked Entity", true)] public QuoteTakeOffUnitLink() { } public QuoteTakeOffUnitLink(Func? 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; } } }