Files
signalr-scratchpad/Models/ErrorViewModel.cs
Tommy Parnell 538628c485 init
2017-10-18 21:42:15 -04:00

11 lines
217 B
C#

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