123456789101112131415161718 |
- using PaySharp.Core;
- using PaySharp.Core.Request;
- namespace PaySharp.Wechatpay.Response
- {
- public class PublicKeyResponse : BaseResponse
- {
- /// <summary>
- /// RSA 公钥
- /// </summary>
- [ReName(Name = "pub_key")]
- public string PublicKey { get; set; }
- internal override void Execute<TModel, TResponse>(Merchant merchant, Request<TModel, TResponse> request)
- {
- }
- }
- }
|