1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-23 22:15:10 -05:00
bitwarden/src/Admin/Models/ErrorViewModel.cs
2018-03-21 12:57:43 -04:00

12 lines
211 B
C#

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