QuoteTakeOffUnitLink.cs 426 B

123456789101112
  1. using System;
  2. using InABox.Core;
  3. using PRSClasses;
  4. namespace Comal.Classes
  5. {
  6. public class QuoteTakeOffUnitLink : DimensionUnitLink<QuoteTakeOffUnit>
  7. {
  8. [LookupEditor(typeof(QuoteTakeOffUnit), nameof(Code), nameof(Description), nameof(HasQuantity), nameof(HasLength), nameof(HasWidth), nameof(HasHeight), nameof(HasWeight), nameof(Formula), nameof(Format))]
  9. public override Guid ID { get; set; }
  10. }
  11. }