export interface TradeOfOrder {
  id: number;
  quantity: string;
  price: string;
  fee: string;
  taker: string;
  timestamp: string;
}
