using Volo.Abp.Application.Dtos; using Yi.Framework.Rbac.Application.Contracts.Dtos.Account; namespace Yi.Framework.Rbac.Application.Contracts.IServices; public interface IAuthService { Task TryGetByOpenIdAsync(string openId, string authType); Task CreateAsync(AuthCreateOrUpdateInputDto input); }