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); + } +}