using AutoMapper; using Sanhe.Abp.Identity.Dto; using Volo.Abp.Identity; namespace Sanhe.Abp.Identity { public class AbpIdentityApplicationModuleAutoMapperProfile : Profile { public AbpIdentityApplicationModuleAutoMapperProfile() { CreateMap() .MapExtraProperties(); CreateMap(); CreateMap(); CreateMap() .MapExtraProperties(); CreateMap() .MapExtraProperties(); CreateMap() .MapExtraProperties(); } } }