QuoteTakeoffFactor.cs 415 B

1234567891011121314
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Quote))]
  5. public class QuoteTakeoffFactor : Entity, IRemotable, IPersistent, IQuoteTakeoffFactor, ILicense<QuotesManagementLicense>
  6. {
  7. [TextBoxEditor(Visible = Visible.Default)]
  8. public string Description { get; set; }
  9. [DoubleEditor(Visible = Visible.Default)]
  10. public double Factor { get; set; }
  11. }
  12. }