1234567891011121314 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class QuoteDesignSectionLink : EntityLink<QuoteDesignSection>, IQuoteDesignSection
- {
- [LookupEditor(typeof(QuoteDesignSection))]
- public override Guid ID { get; set; }
- [TextBoxEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Description { get; set; }
- }
- }
|