export interface Currency {
    code: string;
    name: string;
    symbol: string;
    decimalPlaces: number;
    createdBy: string;
    createdDate: string;
    updatedDate: string;
}
