package com.ctech.reaction.model;
/**
* Created by KenZira on 2/1/17.
*/
public class Reaction {
public String type;
public String source;
public Reaction(String type, String source) {
this.type = type;
this.source = source;
}
}