| 1234567891011121314151617181920212223 |
- using System.Collections;
- using Abp.Collections;
- using Abp.MultiTenancy;
- namespace Abp.Configuration.Startup
- {
- /// <summary>
- /// Used to configure multi-tenancy.
- /// </summary>
- public interface IMultiTenancyConfig
- {
- /// <summary>
- /// Is multi-tenancy enabled?
- /// Default value: false.
- /// </summary>
- bool IsEnabled { get; set; }
- /// <summary>
- /// A list of contributors for tenant resolve process.
- /// </summary>
- ITypeList<ITenantResolveContributor> Resolvers { get; }
- }
- }
|