IIntegrationProduct.cs 150 B

1234567
  1. namespace InABox.Integration
  2. {
  3. public interface IIntegrationProduct : IIntegrationItem
  4. {
  5. string ProductGroupCode { get; set; }
  6. }
  7. }