| 1234567891011121314 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class ProductStyleGroup : Entity, IRemotable, IPersistent, ILicense<ProductManagementLicense>, IMergeable
- {
- [EditorSequence(1)]
- [UniqueCodeEditor(Editable = Editable.Enabled)]
- public string Code { get; set; }
-
- [EditorSequence(2)]
- public string Name { get; set; }
- }
- }
|