From 193577c08f95539505557349fffb0d7773f706d3 Mon Sep 17 00:00:00 2001 From: Ivan_Starostin Date: Sun, 2 Jun 2024 17:26:26 +0400 Subject: [PATCH] Upload files to 'ShipyardClientApp/Models' --- ShipyardClientApp/Models/ErrorViewModel.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ShipyardClientApp/Models/ErrorViewModel.cs diff --git a/ShipyardClientApp/Models/ErrorViewModel.cs b/ShipyardClientApp/Models/ErrorViewModel.cs new file mode 100644 index 0000000..0893e1c --- /dev/null +++ b/ShipyardClientApp/Models/ErrorViewModel.cs @@ -0,0 +1,9 @@ +namespace ShipyardClientApp.Models +{ + public class ErrorViewModel + { + public string? RequestId { get; set; } + + public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + } +}