mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
* Add new endpoint for creating client organizations in consolidated billing * Create empty org and then assign seats for code re-use * Fixes made from debugging client side * few more small fixes * Vincent's feedback
8 lines
176 B
C#
8 lines
176 B
C#
using Stripe;
|
|
|
|
namespace Bit.Core.Billing.Models;
|
|
|
|
public record ProviderSubscriptionDTO(
|
|
List<ConfiguredProviderPlanDTO> ProviderPlans,
|
|
Subscription Subscription);
|