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