Snapshot.kt 333 B

123456789101112
  1. package com.example.snapshots
  2. import com.google.firebase.database.Exclude
  3. import com.google.firebase.database.IgnoreExtraProperties
  4. @IgnoreExtraProperties
  5. data class Snapshot(
  6. @get:Exclude var id: String = "",
  7. var title: String = "",
  8. var photoUrl: String = "",
  9. var likeList: Map<String, Boolean> = mutableMapOf()
  10. )