ProductStyleGroup.cs 379 B

1234567891011121314
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public class ProductStyleGroup : Entity, IRemotable, IPersistent, ILicense<ProductManagementLicense>, IMergeable
  5. {
  6. [EditorSequence(1)]
  7. [UniqueCodeEditor(Editable = Editable.Enabled)]
  8. public string Code { get; set; }
  9. [EditorSequence(2)]
  10. public string Name { get; set; }
  11. }
  12. }