hackernet/Apps/HackerNet.Web/Models/ErrorViewModel.cs
2021-12-13 11:42:11 +01:00

9 lines
184 B
C#

namespace HackerNet.Web.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}