mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
434298cba6
* Greenfield: Store Rates Config * FIX SWAGGER * rebase fix * Apply suggestions from code review Co-authored-by: d11n <mail@dennisreimann.de> * Update BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-rates-config.json Co-authored-by: d11n <mail@dennisreimann.de> * Fix: Spread isn't converted from/to percentage, rename some fields, and move some routes * Fix error handling Co-authored-by: d11n <mail@dennisreimann.de> Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
11 lines
290 B
C#
11 lines
290 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class StoreRateConfiguration
|
|
{
|
|
public decimal Spread { get; set; }
|
|
public bool IsCustomScript { get; set; }
|
|
public string EffectiveScript { get; set; }
|
|
public string PreferredSource { get; set; }
|
|
}
|
|
}
|