btcpayserver/BTCPayServer/Configuration/ExternalServicesOptions.cs
Dennis Reimann 26025b564e Lightning: Catch and display external service errors
Prevent crashes like in #3700 and display the error to the user.
2022-05-04 14:30:07 +02:00

12 lines
340 B
C#

using System;
using System.Collections.Generic;
namespace BTCPayServer.Configuration
{
public class ExternalServicesOptions
{
public Dictionary<string, Uri> OtherExternalServices { get; set; } = new Dictionary<string, Uri>();
public ExternalServices ExternalServices { get; set; } = new ExternalServices();
}
}