diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ServiceConfigurationContext.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ServiceConfigurationContext.cs new file mode 100644 index 0000000000..bf2f77fa4f --- /dev/null +++ b/framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ServiceConfigurationContext.cs @@ -0,0 +1,15 @@ +using JetBrains.Annotations; +using Microsoft.Extensions.DependencyInjection; + +namespace Volo.Abp.Modularity +{ + public class ServiceConfigurationContext + { + public IServiceCollection Services { get; } + + public ServiceConfigurationContext([NotNull] IServiceCollection services) + { + Services = Check.NotNull(services, nameof(services)); + } + } +} \ No newline at end of file