network-resurrector/NetworkResurrector.Server.A.../Mappings/MappingProfile.cs

13 lines
222 B
C#
Raw Normal View History

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