PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopClientApp/Models/ErrorViewModel.cs
Arkadiy Radaev b8c207c772 res5
2024-04-09 17:02:29 +04:00

9 lines
201 B
C#

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