PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopClientApp/Models/ErrorViewModel.cs

9 lines
203 B
C#
Raw Normal View History

2024-04-08 19:40:25 +04:00
namespace FlowerShopClientApp.Models
2024-04-08 12:54:05 +04:00
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}