WeatherDashboard/WeatherDashboard.Web/Models/ErrorViewModel.cs

9 lines
204 B
C#
Raw Normal View History

2023-02-09 02:30:14 +00:00
namespace WeatherDashboard.Web.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}