12345678910111213141516 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Product))]
- public class ProductStyle : Entity, IRemotable, IPersistent, IProductStyle, ILicense<ProductManagementLicense>
- {
- [EditorSequence(1)]
- [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
- public string Code { get; set; }
- [EditorSequence(2)]
- [TextBoxEditor]
- public string Description { get; set; }
- }
- }
|