9 lines
256 B
C#
9 lines
256 B
C#
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";
|
|
}
|
|
} |