using Abp.Collections; namespace VberZero.Configuration; public class UserManagementConfig : IUserManagementConfig { public ITypeList ExternalAuthenticationSources { get; set; } public UserManagementConfig() { ExternalAuthenticationSources = new TypeList(); } }