1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

enterprise plans

This commit is contained in:
Kyle Spearrin
2017-05-08 14:40:04 -04:00
parent 81d4be6f56
commit e996a410dc
3 changed files with 67 additions and 27 deletions

View File

@ -139,6 +139,34 @@ namespace Bit.Core.Utilities
StripeSeatPlanId = "teams-org-seat-annually",
UpgradeSortOrder = 2,
TrialPeriodDays = 7
},
new Plan
{
Type = PlanType.EnterpriseMonthly,
BaseSeats = 0,
BasePrice = 0,
SeatPrice = 4M,
CanBuyAdditionalSeats = true,
Name = "Enterprise (Monthly)",
StripePlanId = null,
StripeSeatPlanId = "enterprise-org-seat-monthly",
UpgradeSortOrder = 3,
TrialPeriodDays = 7,
UseGroups = true
},
new Plan
{
Type = PlanType.EnterpriseAnnually,
BaseSeats = 0,
BasePrice = 0,
SeatPrice = 36,
CanBuyAdditionalSeats = true,
Name = "Enterprise (Annually)",
StripePlanId = null,
StripeSeatPlanId = "enterprise-org-seat-annually",
UpgradeSortOrder = 3,
TrialPeriodDays = 7,
UseGroups = true
}
};