import { CurrencyVM } from './currencyVM'; export interface MerchantCurrencyVM { id?: string; merchant_id?: string; currency_id?: number; active?: boolean; currency?: CurrencyVM; can_update?: boolean; can_delete?: boolean; }