| 123456789101112131415161718192021222324252627 |
- namespace VberZero.Configuration;
- /// <summary>
- /// Configuration options for zero module.
- /// </summary>
- public interface IVzConfig
- {
- /// <summary>
- /// Gets role management config.
- /// </summary>
- IRoleManagementConfig RoleManagement { get; }
- /// <summary>
- /// Gets user management config.
- /// </summary>
- IUserManagementConfig UserManagement { get; }
- ///// <summary>
- ///// Gets language management config.
- ///// </summary>
- //ILanguageManagementConfig LanguageManagement { get; }
- ///// <summary>
- ///// Gets entity type config.
- ///// </summary>
- //IAbpZeroEntityTypes EntityTypes { get; }
- }
|