1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 13:13:24 +00:00
Files
server/src/Admin/Models/ErrorViewModel.cs
2022-08-29 16:06:55 -04:00

9 lines
174 B
C#

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