mirror of
https://github.com/bitwarden/server
synced 2026-02-22 04:13:43 +00:00
12 lines
267 B
C#
12 lines
267 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|