Skip to content

Commit

Permalink
chore: Automated dotnet-format update
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 2, 2023
1 parent 603c06f commit 23dfca6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace EasyMicroservices.IdentityMicroservice.Contracts.Responses
{
public class UserResponseContract
public class UserResponseContract
{
public string Token { get; set; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace EasyMicroservices.IdentityMicroservice.Interfaces
{
public interface IJWTManager
{
Task<ListMessageContract<ClaimContract>> GetClaimsFromToken(string token);
Task<ListMessageContract<ClaimContract>> GetClaimsFromToken(string token);
Task<MessageContract<UserResponseContract>> EditTokenClaims(EditTokenClaimRequestContract request);
Task<MessageContract<UserResponseContract>> GenerateTokenWithClaims(List<ClaimContract> claims);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class MicroserviceClientTest
{
const int Port = 1201;
string _routeAddress = "";
public static HttpClient HttpClient { get; set; } = new HttpClient();
public static HttpClient HttpClient { get; set; } = new HttpClient();
public MicroserviceClientTest()
{
_routeAddress = $"http://localhost:{Port}";
Expand Down

0 comments on commit 23dfca6

Please sign in to comment.