2024-04-29 00:19:47 +04:00

9 lines
209 B
C#

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