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