IVzConfig.cs 658 B

123456789101112131415161718192021222324252627
  1. namespace VberZero.Configuration;
  2. /// <summary>
  3. /// Configuration options for zero module.
  4. /// </summary>
  5. public interface IVzConfig
  6. {
  7. /// <summary>
  8. /// Gets role management config.
  9. /// </summary>
  10. IRoleManagementConfig RoleManagement { get; }
  11. /// <summary>
  12. /// Gets user management config.
  13. /// </summary>
  14. IUserManagementConfig UserManagement { get; }
  15. ///// <summary>
  16. ///// Gets language management config.
  17. ///// </summary>
  18. //ILanguageManagementConfig LanguageManagement { get; }
  19. ///// <summary>
  20. ///// Gets entity type config.
  21. ///// </summary>
  22. //IAbpZeroEntityTypes EntityTypes { get; }
  23. }