btcpayserver-configurator/BTCPayServerDockerConfigurator/Models/ErrorViewModel.cs
2019-11-15 14:27:33 +01:00

13 lines
307 B
C#

using BTCPayServerDockerConfigurator.Controllers;
using Microsoft.Extensions.Configuration;
namespace BTCPayServerDockerConfigurator.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}