Files
IM_NEW/GroupService.WebApi/Application/IntegrationServices/IIdentityIntegrationService.cs
T
2026-05-09 17:06:30 +08:00

11 lines
255 B
C#

using GroupService.WebApi.Application.Dtos;
using IM.Commons;
namespace GroupService.WebApi.Application.IntegrationServices
{
public interface IIdentityIntegrationService
{
Task<Result<UserInfoDto>> FindUserByIdAsync(Guid id);
}
}