1
0
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:
Kyle Spearrin
2017-04-06 16:52:39 -04:00
parent 8ab363cc73
commit 2d7cb1321b
6 changed files with 182 additions and 3 deletions

View 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>();
}
}