IInterface1.cs 394 B

123456789101112131415161718192021
  1. using System;
  2. namespace DataExchange.Tests
  3. {
  4. internal interface IInterface1
  5. {
  6. void Op0(DateTime dt);
  7. string Op1(Op1Input input);
  8. bool Op2(bool input);
  9. }
  10. internal class Op1Input
  11. {
  12. public int I { get; set; }
  13. public bool B { get; set; }
  14. public string S { get; set; }
  15. public DateTime DateTime { get; set; }
  16. }
  17. }