CodeLiturgy.Dashboard/BlueWest.Views/Models/ErrorViewModel.cs

8 lines
176 B
C#
Raw Normal View History

2022-09-19 05:50:15 +03:00
namespace BlueWest.Views.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}