mirror of
https://github.com/bitwarden/server.git
synced 2025-05-16 17:15:40 -05:00
11 lines
418 B
C#
11 lines
418 B
C#
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.Billing.Services.Contracts;
|
|
|
|
/// <param name="Id">The ID of the provider to update the seat minimums for.</param>
|
|
/// <param name="Configuration">The new seat minimums for the provider.</param>
|
|
public record UpdateProviderSeatMinimumsCommand(
|
|
Guid Id,
|
|
string GatewaySubscriptionId,
|
|
IReadOnlyCollection<(PlanType Plan, int SeatsMinimum)> Configuration);
|