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

26 lines
937 B
C#
Raw Normal View History

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; }
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; }
public short? MaxSubvaults { get; set; }
public bool Disabled { get; set; }
}
}