ErrorViewModel.cs 209 Bytes
namespace HHECS.WorkHourStatistics.Models
{
    public class ErrorViewModel
    {
        public string? RequestId { get; set; }

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