IIntegrationDiscount.cs 185 B

12345678
  1. namespace InABox.Integration
  2. {
  3. public interface IIntegrationDiscount : IIntegrationItem
  4. {
  5. string SupplierCode { get; set; }
  6. double Discount { get; set; }
  7. }
  8. }