9 lines
195 B
C#
Raw Normal View History

2024-05-11 04:12:28 +04:00
namespace PrecastConcretePlantClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}