QuoteDesignSection.cs 300 B

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