Back to project page singly-android.
The source code is released under:
MIT License
If you think the Android project singly-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.singly.android.component; //from www . j a v a 2s . c o m import java.util.Map; import com.singly.android.util.ImageInfo; /** * Holds information about a Singly service from the /services endpoint. */ public class SinglyService { String id; String name; Map<String, String> icons; ImageInfo imageInfo; }