11 lines
228 B
C#
11 lines
228 B
C#
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace PoweredSoft.Module.Abstractions
|
|||
|
{
|
|||
|
public interface IModule
|
|||
|
{
|
|||
|
IServiceCollection ConfigureServices(IServiceCollection services);
|
|||
|
}
|
|||
|
}
|