feat(api): UserProfile

This commit is contained in:
Mikhail Trubnikov
2023-12-06 11:53:36 +10:00
parent 052312738e
commit b8e48859ae
7 changed files with 107 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using AutoMapper;
using PARR.API.Authentication.Models;
using PARR.API.Contracts.V1.Responses;
using PARR.API.MappingProfiles.Resolvers;
using PARR.BLL.Helpers;
@@ -169,6 +170,8 @@ namespace PARR.API.MappingProfiles
CreateMap<Role, RoleResponse>();
CreateMap<UserCache, UserProfileResponse>();
#endregion
}