Guest User

Untitled

a guest
Jul 22nd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Transaction {
  2. constructor(senderId, receiverId, value) {
  3. this.senderId = senderId;
  4. this.receiverId = receiverId;
  5. this.value = value;
  6. }
  7. }
  8.  
  9. export default Transaction;
Add Comment
Please, Sign In to add comment