mirror of
https://github.com/bitwarden/server.git
synced 2025-04-12 00:28:11 -05:00
10 lines
231 B
C#
10 lines
231 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Groups.Interfaces;
|
|
|
|
public interface IPostGroupCommand
|
|
{
|
|
Task<Group> PostGroupAsync(Organization organization, ScimGroupRequestModel model);
|
|
}
|