network-resurrector/NetworkResurrector.Application/Mappings/MappingProfile.cs

13 lines
215 B
C#
Raw Normal View History

2020-07-09 02:32:35 +03:00
using AutoMapper;
namespace NetworkResurrector.Application.Mappings
{
public class MappingProfile : Profile
{
public MappingProfile()
{
// Add mappings here
2020-07-09 02:32:35 +03:00
}
}
}