9 lines
185 B
C#
Raw Permalink Normal View History

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