Files
mixtape/zero.Core/Mapper/ZeroMapperProfile.cs
T

16 lines
309 B
C#
Raw Normal View History

2021-11-29 18:25:50 +01:00
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);
}