mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
10 lines
228 B
C#
10 lines
228 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IPatchGroupCommand
|
|
{
|
|
Task PatchGroupAsync(Organization organization, Guid id, ScimPatchModel model);
|
|
}
|