Back to project page ChattyOwl.
The source code is released under:
MIT License
If you think the Android project ChattyOwl 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.znupy.chattyowl.network; /*from w w w .jav a 2 s .com*/ import com.google.gson.annotations.SerializedName; import com.znupy.chattyowl.models.Property; import java.util.List; /** * Created by samok on 28/07/14. */ public class PropertiesResponse extends BaseResponse { @SerializedName("data") public List<Property> properties; }