Skip to content

Instantly share code, notes, and snippets.

View arunavdey7's full-sized avatar
🏠
Working from home

Arunav Dey arunavdey7

🏠
Working from home
  • SDE-1 at OLX India
  • Noida, Uttar Pradesh, India
View GitHub Profile
@arunavdey7
arunavdey7 / ChatMessage.java
Created February 3, 2018 06:35 — forked from puf/ChatMessage.java
Zero to App: Develop with Firebase (for Android - Google I/O 2016)
package com.google.firebase.zerotoapp;
public class ChatMessage {
public String name;
public String message;
public ChatMessage() {
}
public ChatMessage(String name, String message) {