export interface Pricing {
    currency: string;
    prices: Price[];
}
export interface Price {
    price: number;
    frequency: string;
}
