Files
notesnook-sync-server_custo…/Streetwriters.Common/Models/GetTransactionInvoiceResponse.cs
2025-10-14 21:15:51 +05:00

22 lines
480 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 class GetTransactionInvoiceResponse : PaddleResponse
{
[JsonPropertyName("data")]
public Invoice? Invoice { get; set; }
}
public partial class Invoice
{
[JsonPropertyName("url")]
public string? Url { get; set; }
}
}