mirror of
https://github.com/bitwarden/server
synced 2026-01-02 08:33:48 +00:00
13 lines
358 B
C#
13 lines
358 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
|
using Bit.Scim.Models;
|
|
|
|
namespace Bit.Scim.Users.Interfaces;
|
|
|
|
public interface IPostUserCommand
|
|
{
|
|
Task<OrganizationUserUserDetails> PostUserAsync(Guid organizationId, ScimUserRequestModel model);
|
|
}
|