EFB/Models/ErrorViewModel.cs

12 lines
202 B
C#
Raw Normal View History

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