9 lines
181 B
C#
9 lines
181 B
C#
using AutoMapper;
|
|
|
|
namespace AutobusApi.Application.Common.Mappings;
|
|
|
|
public interface IMapFrom<T>
|
|
{
|
|
void Mapping(Profile profile) => profile.CreateMap(typeof(T), GetType());
|
|
}
|