IIntegrationSupplier.cs 157 B

12345678
  1. namespace InABox.Integration
  2. {
  3. public interface IIntegrationSupplier
  4. {
  5. string Code {get; set;}
  6. string Description {get; set;}
  7. }
  8. }