1234567891011121314 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Quote))]
- public class QuoteTakeoffFactor : Entity, IRemotable, IPersistent, IQuoteTakeoffFactor, ILicense<QuotesManagementLicense>
- {
- [TextBoxEditor(Visible = Visible.Default)]
- public string Description { get; set; }
- [DoubleEditor(Visible = Visible.Default)]
- public double Factor { get; set; }
- }
- }
|