Software_Engineering_Field_.../SiteManagementSystem(Softwa.../Interface/ITokenFactory.cs

11 lines
278 B
C#
Raw Normal View History

2024-10-30 17:52:22 +08:00
using SiteManagementSystem_SoftwareEngineering_.Entity;
namespace SiteManagementSystem_SoftwareEngineering_.Interface
{
public interface ITokenFactory
{
public string CreateAccessToken(User user);
public string CreateRefreshToken(User user);
}
}