Files
2026-07-21 14:22:06 +07:00

8 lines
178 B
C#

namespace Indotalent.ConfigBackEnd.Mappings;
using AutoMapper;
public interface IMapFrom<T>
{
void Mapping(Profile profile) => profile.CreateMap(typeof(T), GetType());
}