Files
Yi.Framework/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IAuthService.cs
2024-10-19 16:17:26 +08:00

10 lines
341 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?> TryGetByOpenIdAsync(string openId, string authType);
Task<AuthOutputDto> CreateAsync(AuthCreateOrUpdateInputDto input);
}