Files
server/src/Core/Billing/Models/ProviderSubscriptionDTO.cs
Alex Morask c4ba0dc2a5 [AC-1923] Add endpoint to create client organization (#3977)
* 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
2024-04-16 13:55:00 -04:00

8 lines
176 B
C#

using Stripe;
namespace Bit.Core.Billing.Models;
public record ProviderSubscriptionDTO(
List<ConfiguredProviderPlanDTO> ProviderPlans,
Subscription Subscription);