added comments

This commit is contained in:
2024-08-26 11:45:52 +03:00
parent 2eea79711e
commit c86cc70f3f
2 changed files with 9 additions and 2 deletions

View File

@@ -2,7 +2,9 @@
namespace ApplicationLayer.Services.AuthServices.NeededServices;
/// Generates jwt-tokens
public interface ITokenGenerator
{
/// returns jwt-token for specific user
string CreateToken(User user);
}
}