Initial commit.

This commit is contained in:
2026-03-13 10:23:47 +01:00
parent fd81c63020
commit 39c8b861c0
44 changed files with 1144 additions and 4 deletions

9
Shared/Routes.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace ClientApiPoC.Shared {
public static class Routes {
private const string BASE_PATH = "/api/";
public const string TUNNEL_PATH = "/tunnel";
public const string EXAMPLE_REQUEST = $"{BASE_PATH}ExampleRequest";
}
}