PIbd-21_Medvedkov_Coursach/ComputerShopImplementerApp/Models/ErrorViewModel.cs
2024-05-02 00:46:54 +04:00

9 lines
189 B
C#

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