mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00: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);
|
|
}
|