mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00

* Add endpoint to update a provider organization's seats for consolidated billing. * Fixed failing tests
13 lines
312 B
C#
13 lines
312 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
using Bit.Core.AdminConsole.Entities.Provider;
|
|
|
|
namespace Bit.Core.Billing.Commands;
|
|
|
|
public interface IAssignSeatsToClientOrganizationCommand
|
|
{
|
|
Task AssignSeatsToClientOrganization(
|
|
Provider provider,
|
|
Organization organization,
|
|
int seats);
|
|
}
|