new API project

This commit is contained in:
2021-11-29 18:25:50 +01:00
parent 192a0d795a
commit 346a674306
85 changed files with 940 additions and 410 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace zero.Mapper;
public abstract class ZeroMapperProfile : IMapperProfile
{
/// <inheritdoc />
public abstract void Configure(IZeroMapper mapper);
}
public interface IMapperProfile
{
/// <summary>
/// Configure maps for this profile
/// </summary>
void Configure(IZeroMapper mapper);
}