9 lines
185 B
C#
9 lines
185 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Church.Net.WebAPI.Bindings
|
|
{
|
|
public interface IBinding
|
|
{
|
|
void Binding(IServiceCollection services);
|
|
}
|
|
} |