mirror of
https://github.com/bitwarden/server.git
synced 2025-04-15 10:08:14 -05:00
12 lines
370 B
C#
12 lines
370 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationSubscriptions.Interface;
|
|
|
|
/// <summary>
|
|
/// This is only for adding SM to an existing organization
|
|
/// </summary>
|
|
public interface IAddSecretsManagerSubscriptionCommand
|
|
{
|
|
Task SignUpAsync(Organization organization, int additionalSmSeats, int additionalServiceAccounts);
|
|
}
|