mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
9 lines
205 B
C#
9 lines
205 B
C#
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.Billing.Services.Contracts;
|
|
|
|
public record ChangeProviderPlanCommand(
|
|
Guid ProviderPlanId,
|
|
PlanType NewPlan,
|
|
string GatewaySubscriptionId);
|