1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

Billing updates

- Break monthly and annual plans into two.
- Add upgrade and adjust additional users
This commit is contained in:
Kyle Spearrin
2017-04-10 09:36:21 -04:00
parent 52dcd6d6ab
commit bb0555a6d9
5 changed files with 255 additions and 36 deletions

View File

@ -3,9 +3,11 @@
public enum PlanType : byte
{
Free = 0,
Personal = 1,
Teams = 2,
Enterprise = 3,
Custom = 4
PersonalAnnually = 1,
TeamsMonthly = 2,
TeamsAnnually = 3,
EnterpriseMonthly = 4,
EnterpriseAnnually = 5,
Custom = 6
}
}