PublicKeyResponse.cs 441 B

123456789101112131415161718
  1. using PaySharp.Core;
  2. using PaySharp.Core.Request;
  3. namespace PaySharp.Wechatpay.Response
  4. {
  5. public class PublicKeyResponse : BaseResponse
  6. {
  7. /// <summary>
  8. /// RSA 公钥
  9. /// </summary>
  10. [ReName(Name = "pub_key")]
  11. public string PublicKey { get; set; }
  12. internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
  13. {
  14. }
  15. }
  16. }