Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Created August 14, 2018 16:17
Show Gist options
  • Select an option

  • Save catalinghita8/d09e18291e1b5a05926b596a0e35ef92 to your computer and use it in GitHub Desktop.

Select an option

Save catalinghita8/d09e18291e1b5a05926b596a0e35ef92 to your computer and use it in GitHub Desktop.
public class MessageUiModel {
private final String mMessageText;
public MessageUiModel(String messageText) {
this.mMessageText = messageText;
}
public String getMessageText() {
return mMessageText;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment