Moshaverino/Moshaverino.Web/Models/ErrorViewModel.cs

12 lines
214 B
C#

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