Skip to content

Instantly share code, notes, and snippets.

@manuelernesto
Last active January 16, 2019 08:02
Show Gist options
  • Save manuelernesto/b108b124d53139cfb3d776e0b679f245 to your computer and use it in GitHub Desktop.
Save manuelernesto/b108b124d53139cfb3d776e0b679f245 to your computer and use it in GitHub Desktop.
import com.google.firebase.firestore.Exclude
import java.io.Serializable
data class Person(
@Exclude var id: String? = null,
var name: String = "",
var email: String = "",
var phone: String = ""
) : Serializable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment