plan types

This commit is contained in:
Kyle Spearrin 2018-07-02 15:19:33 -04:00
parent 8be95bfe57
commit 7ba04c919e
1 changed files with 9 additions and 0 deletions

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,
}