Back to project page WarDroid.
The source code is released under:
MIT License
If you think the Android project WarDroid 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.deathsnacks.wardroid.gson.alert; /* w ww .j a va 2 s. c o m*/ import com.google.gson.annotations.Expose; public class Expiry { @Expose private int sec; @Expose private int usec; public int getSec() { return sec; } public void setSec(int sec) { this.sec = sec; } public int getUsec() { return usec; } public void setUsec(int usec) { this.usec = usec; } }