common: add paddle v1 api client

This commit is contained in:
Abdullah Atta
2025-10-07 16:44:15 +05:00
committed by Abdullah Atta
parent 9e6a25ec1d
commit cc459f9fea
5 changed files with 373 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using System.Text.Json.Serialization;
namespace Streetwriters.Common.Models
{
public partial class RefundPaymentResponse
{
[JsonPropertyName("success")]
public bool Success { get; set; }
[JsonPropertyName("response")]
public Refund Refund { get; set; }
}
public partial class Refund
{
[JsonPropertyName("refund_request_id")]
public long RefundRequestId { get; set; }
}
}