AppPayRequest.cs 284 B

12345678910111213
  1. using PaySharp.Alipay.Domain;
  2. using PaySharp.Alipay.Response;
  3. namespace PaySharp.Alipay.Request
  4. {
  5. public class AppPayRequest : BaseRequest<AppPayModel, AppPayResponse>
  6. {
  7. public AppPayRequest()
  8. : base("alipay.trade.app.pay")
  9. {
  10. }
  11. }
  12. }