InventoryManager / Models / ErrorViewModel.cs
ErrorViewModel.cs
Raw
using System;

namespace InventoryManager.Models
{
    public class ErrorViewModel
    {
        public string RequestId { get; set; }

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