Back to project page location-sharing-android.
The source code is released under:
MIT License
If you think the Android project location-sharing-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 lv.lu.locationsharing.model; /*from w w w . ja v a2s . c o m*/ import java.util.ArrayList; public class InviteFriends { Boolean success; ArrayList<String> errors; public boolean isSuccess() { return success; } public void setSuccess(boolean success) { this.success = success; } public ArrayList<String> getErrors() { return errors; } public void setErrors(ArrayList<String> errors) { this.errors = errors; } }