PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopClientApp/Models/ErrorViewModel.cs
2024-04-08 19:40:25 +04:00

9 lines
203 B
C#

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