using Bit.Core.AdminConsole.Entities.Provider;
using Bit.Core.Billing.Enums;
namespace Bit.Core.Billing.Providers.Models;
/// The provider to update the seat minimums for.
/// The new seat minimums for the provider.
public record UpdateProviderSeatMinimumsCommand(
Provider Provider,
IReadOnlyCollection<(PlanType Plan, int SeatsMinimum)> Configuration);