13 lines
222 B
C#
13 lines
222 B
C#
|
using AutoMapper;
|
|||
|
|
|||
|
namespace NetworkResurrector.Server.Application.Mappings
|
|||
|
{
|
|||
|
public class MappingProfile : Profile
|
|||
|
{
|
|||
|
public MappingProfile()
|
|||
|
{
|
|||
|
// Add mappings here
|
|||
|
}
|
|||
|
}
|
|||
|
}
|