Files
IM_NEW/MessageService.WebApi/Application/IntegrationServices/IGroupMemberIntegrationService.cs
T
2026-04-30 21:08:28 +08:00

8 lines
204 B
C#

namespace MessageService.WebApi.Application.IntegrationServices
{
public interface IGroupMemberIntegrationService
{
Task<bool> CheckGroupMemberAsync(Guid userId, Guid groupId);
}
}