mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
26025b564e
Prevent crashes like in #3700 and display the error to the user.
12 lines
340 B
C#
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();
|
|
}
|
|
}
|