mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 02:10:30 +00:00
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
export interface ExchangeRateLatestDTO {
|
|
toCurrency: string;
|
|
fromCurrency: string;
|
|
}
|
|
|
|
export interface EchangeRateLatestPOJO {
|
|
baseCurrency: string;
|
|
toCurrency: string;
|
|
exchangeRate: number;
|
|
}
|