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