Initial Project Upload

This contains the base ASP.Net Core web application running on .Net Core Version 5
This commit is contained in:
lukejelse04
2021-09-20 07:16:48 +01:00
parent bf40656e4b
commit e1c97e5b8c
52 changed files with 40133 additions and 0 deletions

11
Models/ErrorViewModel.cs Normal file
View File

@ -0,0 +1,11 @@
using System;
namespace EFB.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}