using NetAdmin.Application.Services; using NetAdmin.Domain.Dto.Sys.UserProfile; using NetAdmin.SysComponent.Application.Modules.Sys; namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; /// /// 用户档案服务 /// public interface IUserProfileService : IService, IUserProfileModule { /// /// 编辑用户档案 /// Task EditAsync(EditUserProfileReq req); /// /// 获取当前用户配置 /// Task GetSessionUserAppConfigAsync(); /// /// 设置当前用户配置 /// Task SetSessionUserAppConfigAsync(SetSessionUserAppConfigReq req); }