MireaBackend/Application/Common/Mappings/IMapWith.cs

9 lines
201 B
C#
Raw Normal View History

2024-01-08 16:11:01 +03:00
using AutoMapper;
namespace Mirea.Api.DataAccess.Application.Common.Mappings;
public interface IMapWith<T>
{
void Mapping(Profile profile) =>
profile.CreateMap(typeof(T), GetType());
}