e1c97e5b8c
This contains the base ASP.Net Core web application running on .Net Core Version 5
12 lines
202 B
C#
12 lines
202 B
C#
using System;
|
|
|
|
namespace EFB.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
}
|