10 lines
206 B
C#
Raw Permalink 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);
}
}