Skip to content

Instantly share code, notes, and snippets.

@nathanjones
Created April 26, 2016 14:59
Show Gist options
  • Save nathanjones/717bd4ddca110cb4f020f9810647259d to your computer and use it in GitHub Desktop.
Save nathanjones/717bd4ddca110cb4f020f9810647259d to your computer and use it in GitHub Desktop.
/**
* Example data structure for a simple message
*/
public class Message {
public MessageType type;
public String text;
public Drawable image;
public Location location;
public enum MessageType {
Unknown, Text, Image, Location
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment