mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08: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);
|
|||
|
|
}
|
|||
|
|
}
|