using Microsoft.AspNetCore.Authentication; using System.Threading.Tasks; namespace LINGYUN.Abp.Account.Web.OAuth.ExternalProviders; public interface IOAuthHandlerOptionsProvider where TOptions : RemoteAuthenticationOptions, new() { Task SetOptionsAsync(TOptions options); }