Initial commit: HealthManager full-stack health management platform
Backend: .NET 10 + PostgreSQL + EF Core + JWT + SignalR Frontend patient: React 19 + TypeScript + Vite (mobile H5) Frontend doctor: React 19 + TypeScript + Vite (desktop web)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace HealthManager.Domain.Interfaces;
|
||||
|
||||
public interface IJwtProvider
|
||||
{
|
||||
string GenerateAccessToken(Guid userId, string name, string role);
|
||||
string GenerateRefreshToken();
|
||||
}
|
||||
Reference in New Issue
Block a user