zgo/src/app/tx.model.ts

8 lines
116 B
TypeScript
Raw Normal View History

export interface Tx {
_id?: string;
address: string;
session: string;
confirmations: number;
2021-11-11 15:18:38 +00:00
amount: number;
}