2026-07-27 14:26:04 +08:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
namespace MiGu.DB.Abstractions.Modules;
|
|
|
|
|
|
|
|
|
|
public interface IEntityModule
|
|
|
|
|
{
|
|
|
|
|
void ConfigureModel(ModelBuilder modelBuilder);
|
|
|
|
|
void RegisterServices(IServiceCollection services);
|
|
|
|
|
}
|