8 lines
204 B
C#
8 lines
204 B
C#
namespace MessageService.WebApi.Application.IntegrationServices
|
|
{
|
|
public interface IGroupMemberIntegrationService
|
|
{
|
|
Task<bool> CheckGroupMemberAsync(Guid userId, Guid groupId);
|
|
}
|
|
}
|