9 lines
209 B
C#
Raw Normal View History

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