mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
9 lines
174 B
C#
9 lines
174 B
C#
namespace Bit.Admin.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|