11 lines
207 B
C#
11 lines
207 B
C#
|
using System;
|
||
|
|
||
|
namespace aspnetapp.Models
|
||
|
{
|
||
|
public class ErrorViewModel
|
||
|
{
|
||
|
public string RequestId { get; set; }
|
||
|
|
||
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||
|
}
|
||
|
}
|