PIbd-21_Medvedkov_Coursach/ComputerShopImplementerApp/Models/ErrorViewModel.cs

9 lines
189 B
C#
Raw Normal View History

2024-05-02 00:46:54 +04:00
namespace ComputerShopImplementerApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}