mirror of
https://github.com/bitwarden/server
synced 2026-01-04 17:43:53 +00:00
9 lines
266 B
C#
9 lines
266 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IGetGroupsListQuery
|
|
{
|
|
Task<(IEnumerable<Group> groupList, int totalResults)> GetGroupsListAsync(Guid organizationId, string filter, int? count, int? startIndex);
|
|
}
|