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

8 lines
204 B
C#

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