export interface CurrencyVM { id?: number; currency_code?: string; name?: string; country_of_origin?: string; symbol?: string; active?: boolean; zero_decimal?: boolean; rounding_divisor?: number; can_update?: boolean; can_delete?: boolean; }