Start a MVC project

This commit is contained in:
Tracy Pearson
2020-10-16 22:55:16 -04:00
parent 4ecddf9806
commit 09a3f1012c
52 changed files with 40122 additions and 0 deletions

View File

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