This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/support/tripviewer/web/Models/ErrorViewModel.cs

12 lines
209 B
C#
Raw Normal View History

2022-11-03 20:41:13 +00:00
using System;
namespace TripViewer.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}