export interface BorrowOrderAlertEntity {
    id: bigint;
    borrow_order_instruction_id: bigint;
    alerted_on: Date;
    telegram_sent: boolean;
    usd_value: string | null;
}
export default BorrowOrderAlertEntity;
