pwt-0x00/Models/ErrorViewModel.cs
2020-09-14 11:17:42 +02:00

11 lines
202 B
C#

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