PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopClientApp/Models/ErrorViewModel.cs

9 lines
201 B
C#
Raw Normal View History

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