package network.thunder.core.etc; import java.util.ArrayList; import java.util.List; /** * Created by matsjerratsch on 11/02/2016. */ public class Configuration { public String serverKey; public String hostnameServer; public int portServer; public List<String> nodesToBuildChannelWith = new ArrayList<>(); }