Files
LeaJobTrackerWebApp/Desktop/hallo/LEA/Models/ErrorViewModel.cs
younes elhaddoury bb13759af4 hallo
2025-09-17 10:28:02 +02:00

10 lines
188 B
C#

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