8 lines
178 B
C#
8 lines
178 B
C#
namespace Indotalent.ConfigBackEnd.Mappings;
|
|
|
|
using AutoMapper;
|
|
|
|
public interface IMapFrom<T>
|
|
{
|
|
void Mapping(Profile profile) => profile.CreateMap(typeof(T), GetType());
|
|
} |