Skip to content

Instantly share code, notes, and snippets.

@rohitsthaa
Created October 26, 2015 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohitsthaa/df9bf20cd561ae798cae to your computer and use it in GitHub Desktop.
Save rohitsthaa/df9bf20cd561ae798cae to your computer and use it in GitHub Desktop.
package google.material.com.listview;
/**
* Created by rohit on 10/26/15.
*/
public class Friend {
public String name;
public String image;
public String phonenumber;
public Friend(String name, String image,String phonenumber) {
this.name = name;
this.image = image;
this.phonenumber=phonenumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment