mirror of
https://github.com/bitwarden/server.git
synced 2025-06-19 10:28:09 -05:00
12 lines
463 B
C#
12 lines
463 B
C#
using Bit.Core.AdminConsole.Entities.Provider;
|
|
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.AdminConsole.Providers.Interfaces;
|
|
|
|
public interface ICreateProviderCommand
|
|
{
|
|
Task CreateMspAsync(Provider provider, string ownerEmail, int teamsMinimumSeats, int enterpriseMinimumSeats);
|
|
Task CreateResellerAsync(Provider provider);
|
|
Task CreateMultiOrganizationEnterpriseAsync(Provider provider, string ownerEmail, PlanType plan, int minimumSeats);
|
|
}
|