Back to project page unbounce-android.
The source code is released under:
MIT License
If you think the Android project unbounce-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ryansteckler.nlpunbounce.models; //from ww w . j a v a 2 s . c o m import java.io.Serializable; import java.util.HashMap; /** * Created by rsteckler on 10/3/14. */ public class BaseStatsWrapper implements Serializable{ public long mRunningSince = -1; public HashMap<String, BaseStats> mStats = null; }