Files
btcpayserver/BTCPayServer/Data/PaymentRequestBlob.cs
2025-10-19 22:31:24 +09:00

21 lines
539 B
C#

using BTCPayServer.JsonConverters;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace BTCPayServer.Data
{
public class PaymentRequestBlob
{
public string Title { get; set; }
public string Description { get; set; }
public string Email { get; set; }
public bool AllowCustomPaymentAmounts { get; set; }
public string FormId { get; set; }
public JObject FormResponse { get; set; }
public string RequestBaseUrl { get; set; }
}
}