varianta proiect care merge

This commit is contained in:
andrei-mihnea-cerbu
2024-04-08 14:23:44 +03:00
parent 370bbdedcd
commit 897193c865
333 changed files with 1090 additions and 98769 deletions
@@ -0,0 +1,10 @@
namespace HealthcareManagerUI.Services.TokenService;
using System.Threading.Tasks;
public interface ITokenService
{
Task<string> GetTokenAsync();
Task SaveTokenAsync(string token);
Task RefreshTokenAsync();
}