- Install Node.js 18.x in Docker build stage - Add MongoDB DataProtection for Swarm compatibility - Enables shared authentication keys across multiple replicas 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
307 B
C#
12 lines
307 B
C#
namespace QRRapidoApp.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
public string? ErrorCode { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
}
|
|
}
|
|
|