mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Remove deprecated CSS options Closes #5945. * Greenfield: Add brandColor to store APIs Closes #5946. * Migrate file IDs to URLs Closes #5953. * Greenfield: Add CSS and logo URL to store settings API Closes #5945. * Add migration test * Store and Server branding can reference file's via fileid:ID * Add PaymentSoundUrl to Store API --------- Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using BTCPayServer.Client.JsonConverters;
|
|
using BTCPayServer.JsonConverters;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Payouts;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class PullPaymentBlob
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Currency { get; set; }
|
|
public int Divisibility { get; set; }
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal Limit { get; set; }
|
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
|
public decimal MinimumClaim { get; set; }
|
|
public PullPaymentView View { get; set; } = new PullPaymentView();
|
|
|
|
[DefaultValue(typeof(TimeSpan), "30.00:00:00")]
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
|
|
[JsonConverter(typeof(TimeSpanJsonConverter.Days))]
|
|
public TimeSpan BOLT11Expiration { get; set; }
|
|
|
|
|
|
[JsonProperty(ItemConverterType = typeof(PayoutMethodIdJsonConverter))]
|
|
public PayoutMethodId[] SupportedPaymentMethods { get; set; }
|
|
|
|
public bool AutoApproveClaims { get; set; }
|
|
|
|
public class PullPaymentView
|
|
{
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public string Email { get; set; }
|
|
}
|
|
}
|
|
}
|