Files
server/src/Core/Models/StaticStore/Plan.cs

21 lines
680 B
C#
Raw Normal View History

using Bit.Core.Enums;
namespace Bit.Core.Models.StaticStore
{
public class Plan
{
2017-04-04 10:13:16 -04:00
public string Name { get; set; }
public string StripePlanId { get; set; }
public string StripeUserPlanId { get; set; }
public PlanType Type { get; set; }
2017-04-04 12:57:50 -04:00
public short BaseUsers { get; set; }
public bool CanBuyAdditionalUsers { get; set; }
2017-04-08 10:52:10 -04:00
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; }
}
}