Browse Source

Setup categories and platforms

pull/7237/head
Thomas Kaul 2 months ago
parent
commit
c0ed5640f2
  1. 12
      libs/common/src/lib/types/product-category.type.ts
  2. 7
      libs/common/src/lib/types/product-platform.type.ts

12
libs/common/src/lib/types/product-category.type.ts

@ -0,0 +1,12 @@
export type ProductCategory =
| 'BUDGETING'
| 'CRYPTOCURRENCY'
| 'DIVIDEND_TRACKING'
| 'ETF_TRACKING'
| 'FAMILY_OFFICE'
| 'FINANCIAL_PLANNING'
| 'INVESTMENT_RESEARCH'
| 'NET_WORTH_TRACKING'
| 'STOCK_TRACKING'
| 'TAX_REPORTING'
| 'WEALTH_MANAGEMENT';

7
libs/common/src/lib/types/product-platform.type.ts

@ -0,0 +1,7 @@
export type ProductPlatform =
| 'ANDROID'
| 'IOS'
| 'LINUX'
| 'MACOS'
| 'WEB'
| 'WINDOWS';
Loading…
Cancel
Save