mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
8 lines
181 B
C#
8 lines
181 B
C#
namespace Aaru.Server.Database.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
} |