8 lines
109 B
TypeScript
8 lines
109 B
TypeScript
export class Transaction {
|
|
from: string
|
|
to: string
|
|
amount: number
|
|
timestamp: number
|
|
date: string
|
|
}
|