mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 22:15:10 -05:00
12 lines
211 B
C#
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);
|
|
}
|
|
}
|