8 lines
176 B
C#
8 lines
176 B
C#
namespace ZhaoXi._001.NET5Demo.Practice.WebApi.Utility.Jwt
|
|
{
|
|
public interface ICustomJWTService
|
|
{
|
|
string GetToken(string UserName, string password);
|
|
}
|
|
}
|