Created
April 26, 2016 14:59
-
-
Save nathanjones/717bd4ddca110cb4f020f9810647259d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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