mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 22:32:22 -05:00

* Delete old command and feature flag switch * Rename vNext command * Remove feature flag
10 lines
205 B
C#
10 lines
205 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IPatchGroupCommand
|
|
{
|
|
Task PatchGroupAsync(Group group, ScimPatchModel model);
|
|
}
|