mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
|
|
// Product subscription tiers
|
||
|
|
export enum EProductSubscriptionTier {
|
||
|
|
FREE = 0,
|
||
|
|
ONE = 5,
|
||
|
|
PRO = 10,
|
||
|
|
BUSINESS = 20,
|
||
|
|
ENTERPRISE = 30,
|
||
|
|
}
|