Skip to content

Instantly share code, notes, and snippets.

@FantailIO
Last active February 16, 2018 09:00
Show Gist options
  • Save FantailIO/c63dc9ea96fc33df7fa3c9e38dc0014a to your computer and use it in GitHub Desktop.
Save FantailIO/c63dc9ea96fc33df7fa3c9e38dc0014a to your computer and use it in GitHub Desktop.
A simple model class to hold a Photo
package io.fantail.location.model;
public class Photo {
private String id;
private byte[] image;
private String caption;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment