QuoteStatus.cs 475 B

1234567891011121314
  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. [TextBoxEditor(Visible = Visible.Default)]
  8. public string Description { get; set; }
  9. [EnumLookupEditor(typeof(QuoteStatusType), Visible = Visible.Default)]
  10. public QuoteStatusType Type { get; set; }
  11. }
  12. }