2024-04-07 17:41:15 +04:00

9 lines
206 B
C#

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