16 lines
292 B
TypeScript
16 lines
292 B
TypeScript
import { Currency, DataSource } from '@prisma/client';
|
|
|
|
export interface Order {
|
|
accountId: string;
|
|
currency: Currency;
|
|
dataSource: DataSource;
|
|
date: Date;
|
|
fee: number;
|
|
id: string;
|
|
quantity: number;
|
|
platformId: string;
|
|
symbol: string;
|
|
type: string;
|
|
unitPrice: number;
|
|
}
|