Y2S1-Web_Apps_and_Services/ThAmCo.Events/Models/ErrorViewModel.cs

11 lines
211 B
C#
Raw Normal View History

2020-06-07 21:36:12 +00:00
using System;
namespace ThAmCo.Events.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}