10 lines
192 B
C#
10 lines
192 B
C#
using IM.Commons;
|
|
|
|
namespace ConnectorService.Services
|
|
{
|
|
public interface IConversationIntergrationService
|
|
{
|
|
Task<List<string>> GetUserStreamKeysAsync(Guid userId);
|
|
}
|
|
}
|