Y2S1-Web_Apps_and_Services/ThAmCo.Events/Models/ErrorViewModel.cs
2020-06-07 22:36:12 +01:00

11 lines
211 B
C#

using System;
namespace ThAmCo.Events.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}