8 lines
198 B
C#
8 lines
198 B
C#
namespace MessageService.WebApi.Application.IntegrationServices
|
|
{
|
|
public interface IContactIntegrationService
|
|
{
|
|
Task<bool> CheckContactAsync(Guid ownerId, Guid targetId);
|
|
}
|
|
}
|