Refactor HTTP client name constant usage

Replaced the old HttpClientName constant in Constants.cs with a new Http.ClientName in the ReC.Application.Common.Constants namespace. Updated all references and using directives accordingly to improve code organization and maintainability.
This commit is contained in:
2025-12-12 12:54:57 +01:00
parent ea5389df85
commit bc700e2cd2
4 changed files with 10 additions and 9 deletions

View File

@@ -1,6 +0,0 @@
namespace ReC.Application.Common;
public static class Constants
{
public static readonly string HttpClientName = "HttpClient-" + Guid.NewGuid().ToString();
}

View File

@@ -0,0 +1,6 @@
namespace ReC.Application.Common.Constants;
public static class Http
{
public static readonly string ClientName = "HttpClient-" + Guid.NewGuid().ToString();
}