mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
10 lines
363 B
C#
10 lines
363 B
C#
using Volo.Abp.Application.Dtos;
|
|
using Yi.Framework.Rbac.Application.Contracts.Dtos.Account;
|
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.IServices;
|
|
|
|
public interface IAuthService
|
|
{
|
|
Task<AuthOutputDto?> TryGetAuthInfoAsync(string? openId, string authType, Guid? userId = null);
|
|
Task<AuthOutputDto> CreateAsync(AuthCreateOrUpdateInputDto input);
|
|
} |