Moshaverino/Moshaverino.Web/Models/ErrorViewModel.cs

12 lines
214 B
C#
Raw Normal View History

2021-01-15 18:21:19 +03:30
using System;
namespace Moshaverino.Web.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}