Yuna/Yuna.Website/Yuna.Website.Server/Services/OpenAuthService/IOpenAuthService.cs

12 lines
344 B
C#

using Yuna.Website.Server.Model;
namespace Yuna.Website.Server.Services.OpenAuthService
{
public interface IOpenAuthService
{
public bool ValidateLoginRequest(string responseType, string clientId, string host);
public UserBinding CreateBinding(User user);
public UserBinding? GetByCode(string code);
}
}