You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

  1. using Common.Models.ExchangeRate;
  2. namespace Common.Models.RequestResponse
  3. {
  4. public class TPResponse
  5. {
  6. public string ResponseCode { get; set; }
  7. public string Msg { get; set; }
  8. public string Id { get; set; }
  9. public object Data { get; set; }
  10. public string Extra { get; set; }
  11. public string Extra2 { get; set; }
  12. public string Extra3 { get; set; }
  13. public void SetResponse(string responseCode, string msg, string id)
  14. {
  15. ResponseCode = responseCode;
  16. Msg = msg;
  17. Id = id;
  18. }
  19. }
  20. public class TPResponsev2
  21. {
  22. public string ResponseCode { get; set; }
  23. public string Msg { get; set; }
  24. public string Id { get; set; }
  25. public ExRateResponse Data { get; set; }
  26. public string Extra { get; set; }
  27. public string Extra2 { get; set; }
  28. public string Extra3 { get; set; }
  29. public void SetResponse(string responseCode, string msg, string id)
  30. {
  31. ResponseCode = responseCode;
  32. Msg = msg;
  33. Id = id;
  34. }
  35. }
  36. }