This commit is contained in:
Matěj Kubíček
2026-09-17 16:45:57 +02:00
parent dbfe7bced7
commit 2040a16879
109 changed files with 50 additions and 221 deletions
@@ -0,0 +1,8 @@
namespace StuzkovakWeb.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}