Response.cs 505 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HengshanPaymentTerminal.Http.Response
  7. {
  8. /// <summary>
  9. /// 云端响应数据对象
  10. /// </summary>
  11. /// <typeparam name="T"></typeparam>
  12. public class Response<T>
  13. {
  14. public bool result { get; set; }
  15. public string message { get; set; }
  16. public T data { get; set; }
  17. }
  18. public class CreateTransactionResponse
  19. {
  20. }
  21. }