Files
ezbookkeeping/src/models/exchange_rate.ts
T
2025-01-05 17:00:26 +08:00

13 lines
333 B
TypeScript

export interface LatestExchangeRate {
readonly currency: string;
readonly rate: string;
}
export interface LatestExchangeRateResponse {
readonly dataSource: string;
readonly referenceUrl: string;
readonly updateTime: number;
readonly baseCurrency: string;
readonly exchangeRates: LatestExchangeRate[];
}