9 lines
208 B
C#
Raw Normal View History

2024-04-06 01:13:12 +04:00
namespace AbstractLawFirmClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}