mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
apis for org settings & billing
This commit is contained in:
12
src/Core/Models/Business/OrganizationBilling.cs
Normal file
12
src/Core/Models/Business/OrganizationBilling.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Stripe;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Models.Business
|
||||
{
|
||||
public class OrganizationBilling
|
||||
{
|
||||
public Source PaymentSource { get; set; }
|
||||
public StripeSubscription Subscription { get; set; }
|
||||
public IEnumerable<StripeCharge> Charges { get; set; } = new List<StripeCharge>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user