mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-03 06:04:24 +01:00
20 lines
488 B
C#
20 lines
488 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; }
|
|
}
|
|
}
|