mirror of
https://github.com/aljazceru/btcpayserver-breez-nodeless-spark.git
synced 2025-12-17 09:24:19 +01:00
15 lines
323 B
C#
15 lines
323 B
C#
#nullable enable
|
|
using System;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.BreezSpark;
|
|
|
|
public class BreezSparkSettings
|
|
{
|
|
public string? Mnemonic { get; set; }
|
|
public string? ApiKey { get; set; }
|
|
|
|
public string PaymentKey { get; set; } = Guid.NewGuid().ToString();
|
|
}
|