2017-03-03 00:07:11 -05:00
|
|
|
|
using Bit.Core.Enums;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.StaticStore
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Plan
|
|
|
|
|
|
{
|
2017-04-04 10:13:16 -04:00
|
|
|
|
public string Name { get; set; }
|
2017-04-04 12:57:50 -04:00
|
|
|
|
public string StripeAnnualPlanId { get; set; }
|
|
|
|
|
|
public string StripeAnnualUserPlanId { get; set; }
|
|
|
|
|
|
public string StripeMonthlyPlanId { get; set; }
|
|
|
|
|
|
public string StripeMonthlyUserPlanId { 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-04 12:57:50 -04:00
|
|
|
|
public bool CanMonthly { get; set; }
|
|
|
|
|
|
public decimal BaseMonthlyPrice { get; set; }
|
|
|
|
|
|
public decimal UserMonthlyPrice { get; set; }
|
|
|
|
|
|
public decimal BaseAnnualPrice { get; set; }
|
|
|
|
|
|
public decimal UserAnnualPrice { get; set; }
|
2017-04-07 16:41:04 -04:00
|
|
|
|
public short? MaxSubvaults { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
public bool Disabled { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|