Files
blazor-crm/ConfigBackEnd/Mappings/IMapFrom.cs
T
2026-07-21 13:59:38 +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());
}