-
-
Save tshevchuk/c862b4e77d1bedc3c94776644a6d33a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
/** | |
* Created by taras on 28.02.17. | |
*/ | |
public class SubTransaction { | |
private String account; | |
private String amount; | |
public String getAccount() { | |
return account; | |
} | |
public void setAccount(String account) { | |
this.account = account; | |
} | |
public String getAmount() { | |
return amount; | |
} | |
public void setAmount(String amount) { | |
this.amount = amount; | |
} | |
@Override | |
public String toString() { | |
return "SubTransaction{" + | |
"account='" + account + '\'' + | |
", amount='" + amount + '\'' + | |
'}'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment