/** @description Basic structure for defining an amount of money and its currency */
export interface Currency {
    currency: string;
    amount: string;
}
