You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
C#
16 lines
347 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace DS.Module.Core.Modules;
|
|
|
|
/// <summary>
|
|
/// 自定义配置服务上下文
|
|
/// </summary>
|
|
public class ConfigureServicesContext
|
|
{
|
|
public ConfigureServicesContext(IServiceCollection services)
|
|
{
|
|
Services = services;
|
|
}
|
|
|
|
public IServiceCollection Services { get; }
|
|
} |