SoftwayWeb/Models/ErrorViewModel.cs
2024-06-18 16:26:00 +02:00

9 lines
194 B
C#

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