Files
IM_NEW/MessageService.WebApi/Application/IntegrationServices/IContactIntegrationService.cs
2026-05-09 17:06:30 +08:00

8 lines
198 B
C#

namespace MessageService.WebApi.Application.IntegrationServices
{
public interface IContactIntegrationService
{
Task<bool> CheckContactAsync(Guid ownerId, Guid targetId);
}
}