mirror of
https://github.com/bitwarden/server.git
synced 2025-05-06 12:12:18 -05:00
10 lines
252 B
C#
10 lines
252 B
C#
using Stripe;
|
|
|
|
namespace Bit.Core.Billing.Models;
|
|
|
|
public record ConsolidatedBillingSubscriptionDTO(
|
|
List<ConfiguredProviderPlanDTO> ProviderPlans,
|
|
Subscription Subscription,
|
|
DateTime? SuspensionDate,
|
|
DateTime? UnpaidPeriodEndDate);
|