Skip to content
Snippets Groups Projects
Select Git revision
  • c55ebc085ec685fc97f34061f7cc5b25490dae3d
  • master default
  • dev-group3-qdigest
  • dev-group2-all-aggregations
  • dev-group2-graphs
  • dev-group2-limit-neighbors
  • dev-group1-stefan
  • dev-group3-kim
  • dev-group1-simon
9 results

ActionInvokeSentMoney.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ActionInvokeSentMoney2.java 289 B
    package fucoin.actions;
    
    import java.io.Serializable;
    
    public class ActionInvokeSentMoney2 implements Serializable{
    	public final String name;
    	public final int amount;
        public ActionInvokeSentMoney2(String name, int amount) {
        	this.name=name;
            this.amount = amount;
        }
    }