trade-backend/src/interfaces/database/ExchangeRow.ts
AzizbekFayziyev e62342e016 finish
2025-07-01 21:07:46 +05:00

12 lines
214 B
TypeScript

interface ExchangeRow {
id: string;
buy_order_id: string;
sell_order_id: string;
amount: number;
timestamp: string;
status: string;
creator: string;
hex_raw_proposal: string;
}
export default ExchangeRow;