2020-07-09 02:32:35 +03:00
|
|
|
|
using AutoMapper;
|
2020-07-10 00:29:39 +03:00
|
|
|
|
using NetworkResurrector.Application.Queries;
|
|
|
|
|
using NetworkResurrector.Domain.Models;
|
2020-07-09 02:32:35 +03:00
|
|
|
|
|
|
|
|
|
namespace NetworkResurrector.Application.Mappings
|
|
|
|
|
{
|
|
|
|
|
public class MappingProfile : Profile
|
|
|
|
|
{
|
|
|
|
|
public MappingProfile()
|
|
|
|
|
{
|
2020-07-10 00:29:39 +03:00
|
|
|
|
CreateMap<SecurityToken, GetToken.Model>();
|
2020-07-09 02:32:35 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|