Thomas Kaul 43fca7ff43
Feature/improve personal finance tools product page (#3599)
* Localize origin
* Localize regions
* Localize tags
2024-07-23 20:59:23 +02:00

17 lines
340 B
TypeScript

export interface Product {
alias?: string;
founded?: number;
hasFreePlan?: boolean;
hasSelfHostingAbility?: boolean;
isOpenSource?: boolean;
key: string;
languages?: string[];
name: string;
note?: string;
origin?: string;
pricingPerYear?: string;
regions?: string[];
slogan?: string;
useAnonymously?: boolean;
}