Files
Watcher/watcher-monitoring/Models/ErrorViewModel.cs
triggermeelmo e72bc48cc4
Some checks failed
Gitea CI/CD / dotnet-build-and-test (push) Has been cancelled
Gitea CI/CD / Set Tag Name (push) Has been cancelled
Gitea CI/CD / docker-build-and-push (push) Has been cancelled
Gitea CI/CD / Create Tag (push) Has been cancelled
init
2025-12-05 09:19:46 +01:00

9 lines
181 B
C#

namespace watcher_monitoring.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}