pwt-0x01-ng/Models/ErrorViewModel.cs
2020-10-26 22:47:50 +01:00

12 lines
210 B
C#

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