Files
notesnook-sync-server_custo…/Streetwriters.Common/Models/GetTransactionResponse.cs
2025-10-07 16:44:15 +05:00

16 lines
369 B
C#

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 : PaddleResponse
{
[JsonPropertyName("data")]
public TransactionV2 Transaction { get; set; }
}
}