1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00
Files
server/src/Core/Models/StaticStore/Plan.cs
Kyle Spearrin bb0555a6d9 Billing updates
- Break monthly and annual plans into two.
- Add upgrade and adjust additional users
2017-04-10 09:36:21 -04:00

21 lines
680 B
C#

using Bit.Core.Enums;
namespace Bit.Core.Models.StaticStore
{
public class Plan
{
public string Name { get; set; }
public string StripePlanId { get; set; }
public string StripeUserPlanId { get; set; }
public PlanType Type { get; set; }
public short BaseUsers { get; set; }
public bool CanBuyAdditionalUsers { get; set; }
public short? MaxAdditionalUsers { get; set; }
public decimal BasePrice { get; set; }
public decimal UserPrice { get; set; }
public short? MaxSubvaults { get; set; }
public int UpgradeSortOrder { get; set; }
public bool Disabled { get; set; }
}
}