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