export interface Currency {
    symbol: string;
    active: boolean;
    depositEnabled: boolean;
    withdrawalEnabled: boolean;
}
