Add relationships feature and EF migration
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
using AutoMapper;
|
||||
using RecNet.Application.Profiles;
|
||||
using RecNet.Application.Profiles.Avatar;
|
||||
using RecNet.Application.Profiles.Relationships;
|
||||
using RecNet.Application.Profiles.Settings;
|
||||
|
||||
namespace RecNet.Application.Common.Mapping;
|
||||
|
||||
@@ -9,6 +12,7 @@ public class ApplicationMappingProfile : Profile
|
||||
{
|
||||
CreateMap<Domain.Profiles.Profile, ProfileDTO>();
|
||||
CreateMap<Domain.Profiles.Avatar, AvatarDTO>();
|
||||
CreateMap<Domain.Profiles.Relationship, RelationshipDTO>();
|
||||
CreateMap<Domain.Profiles.PlayerSetting, PlayerSettingDTO>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user