12345678910111213 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class QuoteDiagramSymbolSection : Entity, IRemotable, IPersistent, ISequenceable, ILicense<QuotesManagementLicense>
- {
- [TextBoxEditor]
- public string Name { get; set; }
- [NullEditor]
- public long Sequence { get; set; }
- }
- }
|