common: add paddle billing api client

This commit is contained in:
Abdullah Atta
2025-10-07 16:44:15 +05:00
committed by Abdullah Atta
parent ed6e3c56f2
commit 3beb716b83
9 changed files with 991 additions and 39 deletions
@@ -0,0 +1,18 @@
namespace Streetwriters.Common.Models
{
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Globalization;
public partial class GetTransactionResponse
{
[JsonPropertyName("data")]
public TransactionV2 Transaction { get; set; }
[JsonPropertyName("meta")]
public Meta Meta { get; set; }
}
}