mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05: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);
|