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.
7 lines
167 B
C#
7 lines
167 B
C#
namespace ReC.Application.Common.Constants;
|
|
|
|
public static class Http
|
|
{
|
|
public static readonly string ClientName = "HttpClient-" + Guid.NewGuid().ToString();
|
|
}
|