1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-27 12:36:14 +01:00

plan types

This commit is contained in:
Kyle Spearrin 2018-07-02 15:19:33 -04:00
parent 8be95bfe57
commit 7ba04c919e

9
src/enums/planType.ts Normal file
View File

@ -0,0 +1,9 @@
export enum PlanType {
Free = 0,
FamiliesAnnually = 1,
TeamsMonthly = 2,
TeamsAnnually = 3,
EnterpriseMonthly = 4,
EnterpriseAnnually = 5,
Custom = 6,
}