9 lines
203 B
C#
Raw Normal View History

2024-04-29 00:19:47 +04:00
namespace CarCenterManagerApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}