IExternalAuthConfiguration.cs 186 B

12345678
  1. using System.Collections.Generic;
  2. namespace VberAdmin.Authentication.External;
  3. public interface IExternalAuthConfiguration
  4. {
  5. List<ExternalLoginProviderInfo> Providers { get; }
  6. }