EI-Image-Viewer-Api/IRaCIS.Core.API/Utility/Jwt/ICustomJWTService.cs

13 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ZhaoXi._001.NET5Demo.Practice.WebApi.Utility.Jwt
{
public interface ICustomJWTService
{
string GetToken(string UserName, string password);
}
}