11 lines
255 B
C#
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);
|
|
}
|
|
}
|