autobus-api_old/AutobusApi.Application/Common/Mappings/IMapFrom.cs
2023-11-30 16:18:07 +02:00

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());
}