using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Quote))] public class QuoteStatus : Entity, IRemotable, IPersistent, IQuoteStatus, ILicense, IImportable, IExportable, IMergeable { [EditorSequence(1)] [TextBoxEditor(Visible = Visible.Default)] public string Description { get; set; } [EditorSequence(2)] public bool Active { get; set; } } }