btcpayserver/BTCPayServer/Models/AdditionalServiceViewModel.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
319 B
C#

namespace BTCPayServer.Models;
public class AdditionalServiceViewModel
{
public string Type { get; set; }
public string DisplayName { get; set; }
public string ServiceName { get; set; }
public string CryptoCode { get; set; }
public string Link { get; set; }
public string Error { get; set; }
}