EFB/Models/ErrorViewModel.cs
lukejelse04 e1c97e5b8c Initial Project Upload
This contains the base ASP.Net Core web application running on .Net Core Version 5
2021-09-20 07:16:48 +01:00

12 lines
202 B
C#

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