blob: f6038901d2a617b9106367f05d9b81c291b48d51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace Web.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}
|