diff --git a/src/ElectronNET.API/Runtime/Data/StartupMethod.cs b/src/ElectronNET.API/Runtime/Data/StartupMethod.cs
index 2dcf68a..378e8e5 100644
--- a/src/ElectronNET.API/Runtime/Data/StartupMethod.cs
+++ b/src/ElectronNET.API/Runtime/Data/StartupMethod.cs
@@ -33,5 +33,23 @@
/// On the command lines, this is "unpackeddotnet"
///
UnpackedDotnetFirst,
+
+ /// Packaged Electron app where DotNet launches Electron and uses SignalR for communication.
+ ///
+ /// DotNet starts first on port 0 (dynamic), launches Electron with the actual URL,
+ /// and uses SignalR instead of socket.io for bidirectional communication.
+ /// Optimized for Blazor Server scenarios. ASP.NET Core only.
+ /// On the command lines, this is "dotnetpackedsignalr"
+ ///
+ PackagedDotnetFirstSignalR,
+
+ /// Unpackaged execution where DotNet launches Electron and uses SignalR for communication.
+ ///
+ /// Similar to PackagedDotnetFirstSignalR but for debugging scenarios.
+ /// DotNet starts first on port 0 (dynamic), launches Electron with the actual URL,
+ /// and uses SignalR instead of socket.io for bidirectional communication.
+ /// On the command lines, this is "unpackeddotnetsignalr"
+ ///
+ UnpackedDotnetFirstSignalR,
}
}
\ No newline at end of file