QuoteStatus.cs 451 B

123456789101112131415
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Quote))]
  5. public class QuoteStatus : Entity, IRemotable, IPersistent, IQuoteStatus, ILicense<QuotesManagementLicense>, IImportable, IExportable, IMergeable
  6. {
  7. [EditorSequence(1)]
  8. [TextBoxEditor(Visible = Visible.Default)]
  9. public string Description { get; set; }
  10. [EditorSequence(2)]
  11. public bool Active { get; set; }
  12. }
  13. }