初始化webSite

This commit is contained in:
hogan
2018-12-27 16:36:02 +08:00
parent 77faf6e982
commit 433c2d2b2d
174 changed files with 27938 additions and 1 deletions

View File

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