BirdsiteLive/src/BirdsiteLive/Models/ErrorViewModel.cs

12 lines
211 B
C#

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