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