2 changed files with 15 additions and 3 deletions
@ -1,12 +1,15 @@ |
|||||
using AutoMapper; |
using AutoMapper; |
||||
|
using Binance.TradeRobot.Model.Db; |
||||
|
using Binance.TradeRobot.Model.Dto; |
||||
|
|
||||
namespace Binance.TradeRobot.Model.Base |
namespace Binance.TradeRobot.Model.Base |
||||
{ |
{ |
||||
public class MappingProfiles : Profile |
public class MappingProfiles : Profile |
||||
{ |
{ |
||||
public MappingProfiles() |
public MappingProfiles() |
||||
{ |
{ |
||||
|
CreateMap<User, UserResponse>(); |
||||
|
CreateMap<UserAccountFundChangeRecord, UserAccountFundChangeRecordResponse>(); |
||||
} |
} |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue