mirror of
https://github.com/bitwarden/server.git
synced 2025-05-22 20:11:04 -05:00

* [NO LOGIC] Organize Billing provider code * Run dotnet format * Run dotnet format' * Fixed using after merge * Fixed test usings after merge
11 lines
435 B
C#
11 lines
435 B
C#
using Bit.Core.AdminConsole.Entities.Provider;
|
|
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.Billing.Providers.Models;
|
|
|
|
/// <param name="Provider">The provider to update the seat minimums for.</param>
|
|
/// <param name="Configuration">The new seat minimums for the provider.</param>
|
|
public record UpdateProviderSeatMinimumsCommand(
|
|
Provider Provider,
|
|
IReadOnlyCollection<(PlanType Plan, int SeatsMinimum)> Configuration);
|