ILogikalProduct.cs 225 B

123456789
  1. namespace InABox.Integration.Logikal
  2. {
  3. public interface ILogikalProduct : IIntegrationProduct
  4. {
  5. string Code { get; set; }
  6. string Name { get; set; }
  7. string ProductGroupCode { get; set; }
  8. }
  9. }