1234567891011121314151617181920 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class QuoteTakeoffLink : EntityLink<QuoteTakeoff>, IQuoteTakeoff
- {
- [LookupEditor(typeof(QuoteTakeoff))]
- public override Guid ID { get; set; }
- [TextBoxEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Description { get; set; }
- [NullEditor]
- public QuoteTakeOffDimensions Dimensions { get; set; }
-
- [NullEditor]
- public QuoteTakeOffFactorLink Factor { get; set; }
- }
- }
|