btcpayserver/BTCPayServer/Models/ErrorViewModel.cs
NicolasDorier b5c6ed3860 Init
2017-09-13 15:55:16 +09:00

11 lines
210 B
C#

using System;
namespace BTCPayServer.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}