2017-03-03 00:07:11 -05:00
|
|
|
|
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; }
|
2017-04-10 09:36:21 -04:00
|
|
|
|
public string StripePlanId { get; set; }
|
|
|
|
|
|
public string StripeUserPlanId { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
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; }
|
2017-04-10 09:36:21 -04:00
|
|
|
|
public decimal BasePrice { get; set; }
|
|
|
|
|
|
public decimal UserPrice { get; set; }
|
2017-04-07 16:41:04 -04:00
|
|
|
|
public short? MaxSubvaults { get; set; }
|
2017-04-10 09:36:21 -04:00
|
|
|
|
public int UpgradeSortOrder { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
public bool Disabled { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|