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