9 lines
205 B
C#
Raw Normal View History

2023-04-07 12:16:43 +04:00
namespace ComputerShopClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}