SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomManagerApp/Models/ErrorViewModel.cs

10 lines
206 B
C#
Raw Normal View History

2024-05-12 14:05:30 +04:00
namespace CarShowroomManagerApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}