ProductGroupIntegrationSource.cs 373 B

123456789101112
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("Integrations")]
  5. public class ProductGroupIntegrationSource : BaseIntegrationSource<ProductGroup,ProductGroupLink>, ILicense<ProductManagementLicense>
  6. {
  7. [TextBoxEditor(Editable = Editable.Disabled, Visible = Visible.Hidden)]
  8. [DoNotPersist]
  9. public string Parent { get; set; }
  10. }
  11. }