Files
server/src/Admin/Models/ErrorViewModel.cs

12 lines
211 B
C#
Raw Normal View History

2018-03-21 12:57:43 -04:00
using System;
namespace Bit.Admin.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}