File size: 192 Bytes
5fc700d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
namespace ToolHub.Models
{
    public class ErrorViewModel
    {
        public string? RequestId { get; set; }

        public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
    }
}