api/HiVakil.Infrastructure/RestServices/IZarinpalRestApi.cs

12 lines
428 B
C#
Raw Permalink Normal View History

2024-02-26 12:37:42 +03:30
using HiVakil.Infrastructure.Models.RestApi.Zarinpal;
namespace HiVakil.Infrastructure.RestServices;
public interface IZarinpalRestApi
{
[Post("/v4/payment/request.json")]
Task<ZarinaplPaymentLinkResponse> GetPaymentLinkAsync([Body] ZarinaplPaymentLinkRequest request);
[Post("/v4/payment/verify.json")]
Task<ZarinaplPaymentVerifyResponse> VerifyPaymentAsync([Body] ZarinaplVerifyPaymentRequest request);
}